Lines Matching refs:conns
77 struct Curl_llist conns; /* connections in the bundle */ member
111 Curl_llist_init(&bundle->conns, NULL); in cpool_bundle_create()
119 DEBUGASSERT(!Curl_llist_count(&bundle->conns)); in cpool_bundle_destroy()
128 Curl_llist_append(&bundle->conns, conn, &conn->cpool_node); in cpool_bundle_add()
137 DEBUGASSERT(Curl_node_llist(&conn->cpool_node) == &bundle->conns); in cpool_bundle_remove()
304 while(bundle && (Curl_llist_count(&bundle->conns) >= dest_limit)) { in Curl_cpool_check_limits()
315 Curl_llist_count(&bundle->conns), dest_limit)); in Curl_cpool_check_limits()
321 if(bundle && (Curl_llist_count(&bundle->conns) >= dest_limit)) { in Curl_cpool_check_limits()
392 if(bundle && (list == &bundle->conns)) { in cpool_remove_conn()
394 if(!Curl_llist_count(&bundle->conns)) in cpool_remove_conn()
438 curr = Curl_llist_head(&bundle->conns); in cpool_foreach()
465 conn_node = Curl_llist_head(&bundle->conns); in cpool_get_live_conn()
524 curr = Curl_llist_head(&bundle->conns); in cpool_bundle_get_oldest_idle()
561 for(curr = Curl_llist_head(&bundle->conns); curr; in cpool_get_oldest_idle()
595 struct Curl_llist_node *curr = Curl_llist_head(&bundle->conns); in Curl_cpool_find()
1358 curr = Curl_llist_head(bundle->conns);