Lines Matching refs:conn_list
61 (*cb_ptr)->conn_list = Curl_llist_alloc((curl_llist_dtor) conn_llist_dtor); in bundle_create()
62 if(!(*cb_ptr)->conn_list) { in bundle_create()
74 if(cb_ptr->conn_list) { in bundle_destroy()
75 Curl_llist_destroy(cb_ptr->conn_list, NULL); in bundle_destroy()
76 cb_ptr->conn_list = NULL; in bundle_destroy()
85 if(!Curl_llist_insert_next(cb_ptr->conn_list, cb_ptr->conn_list->tail, conn)) in bundle_add_conn()
100 curr = cb_ptr->conn_list->head; in bundle_remove_conn()
103 Curl_llist_remove(cb_ptr->conn_list, curr, NULL); in bundle_remove_conn()
288 curr = bundle->conn_list->head; in Curl_conncache_foreach()
317 curr = bundle->conn_list->head; in Curl_conncache_find_first_connection()
352 curr = bundle->conn_list->head;