Lines Matching refs:next_con
337 struct st_connection* cur_con= NULL, *next_con, *connections_end; variable
1382 for (--next_con; next_con >= connections; --next_con) in close_connections()
1384 if (next_con->stmt) in close_connections()
1385 do_stmt_close(next_con); in close_connections()
1387 emb_close_connection(next_con); in close_connections()
1389 next_con->stmt= 0; in close_connections()
1390 mysql_close(next_con->mysql); in close_connections()
1391 next_con->mysql= 0; in close_connections()
1392 if (next_con->util_mysql) in close_connections()
1393 mysql_close(next_con->util_mysql); in close_connections()
1394 my_free(next_con->name); in close_connections()
1405 for (con= connections; con < next_con; con++) in close_statements()
4361 for (con= connections; con < next_con; con++) in find_connection_by_name()
5984 if (next_con != connections_end) in do_connect()
5985 con_slot= next_con; in do_connect()
6105 if (con_slot == next_con) in do_connect()
6106 next_con++; /* if we used the next_con slot, advance the pointer */ in do_connect()
9205 next_con= connections + 1; in main()