Lines Matching refs:next_con
339 struct st_connection* cur_con= NULL, *next_con, *connections_end; variable
1373 for (--next_con; next_con >= connections; --next_con) in close_connections()
1375 if (next_con->stmt) in close_connections()
1376 do_stmt_close(next_con); in close_connections()
1378 emb_close_connection(next_con); in close_connections()
1380 next_con->stmt= 0; in close_connections()
1381 mysql_close(next_con->mysql); in close_connections()
1382 next_con->mysql= 0; in close_connections()
1383 if (next_con->util_mysql) in close_connections()
1384 mysql_close(next_con->util_mysql); in close_connections()
1385 my_free(next_con->name); in close_connections()
1396 for (con= connections; con < next_con; con++) in close_statements()
4354 for (con= connections; con < next_con; con++) in find_connection_by_name()
5997 if (next_con != connections_end) in do_connect()
5998 con_slot= next_con; in do_connect()
6095 if (con_slot == next_con) in do_connect()
6096 next_con++; /* if we used the next_con slot, advance the pointer */ in do_connect()
9217 next_con= connections + 1; in main()