Searched refs:conn_list (Results 1 – 6 of 6) sorted by relevance
/external/curl/lib/ |
D | conncache.c | 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() [all …]
|
D | conncache.h | 41 struct curl_llist *conn_list; /* The connectdata members of the bundle */ member
|
D | pipeline.c | 420 curr = cb_ptr->conn_list->head;
|
D | url.c | 2955 curr = bundle->conn_list->head; in find_oldest_idle_connection() 2999 curr = bundle->conn_list->head; in find_oldest_idle_connection_in_bundle() 3152 curr = bundle->conn_list->head; in ConnectionExists()
|
/external/fio/ |
D | server.c | 493 static void fio_server_add_conn_pid(struct flist_head *conn_list, pid_t pid) in fio_server_add_conn_pid() argument 496 fio_server_add_fork_item(pid, conn_list); in fio_server_add_conn_pid() 562 static void fio_server_check_conns(struct flist_head *conn_list) in fio_server_check_conns() argument 564 fio_server_check_fork_items(conn_list); in fio_server_check_conns() 946 FLIST_HEAD(conn_list); in accept_loop() 962 if (!flist_empty(&conn_list)) in accept_loop() 972 fio_server_check_conns(&conn_list); in accept_loop() 980 fio_server_check_conns(&conn_list); in accept_loop() 1005 fio_server_add_conn_pid(&conn_list, pid); in accept_loop()
|
/external/blktrace/ |
D | blktrace.c | 202 struct list_head conn_list; member 229 struct list_head conn_list; member 2178 list_add_tail(&nc->ch_head, &ch->conn_list); in ch_add_connection() 2181 list_add_tail(&nc->ns_head, &ns->conn_list); in ch_add_connection() 2232 INIT_LIST_HEAD(&ch->conn_list); in net_add_client_host() 2260 list_for_each_safe(p, q, &ch->conn_list) { in net_ch_remove() 2466 list_for_each_safe(p, q, &ns->conn_list) { in handle_client_data() 2486 __list_for_each(p, &ns->conn_list) { in net_setup_pfds() 2532 INIT_LIST_HEAD(&ns->conn_list); in net_server()
|