Home
last modified time | relevance | path

Searched refs:closure_handle (Results 1 – 4 of 4) sorted by relevance

/external/curl/lib/
Dconncache.c138 connc->closure_handle = curl_easy_init(); in Curl_conncache_init()
139 if(!connc->closure_handle) in Curl_conncache_init()
145 Curl_close(connc->closure_handle); in Curl_conncache_init()
146 connc->closure_handle = NULL; in Curl_conncache_init()
149 connc->closure_handle->state.conn_cache = connc; in Curl_conncache_init()
573 conn->data = connc->closure_handle; in Curl_conncache_close_all_connections()
578 (void)Curl_disconnect(connc->closure_handle, conn, FALSE); in Curl_conncache_close_all_connections()
584 if(connc->closure_handle) { in Curl_conncache_close_all_connections()
586 sigpipe_ignore(connc->closure_handle, &pipe_st); in Curl_conncache_close_all_connections()
588 Curl_hostcache_clean(connc->closure_handle, in Curl_conncache_close_all_connections()
[all …]
Dconncache.h38 struct Curl_easy *closure_handle; member
Dmulti.c495 data->state.conn_cache->closure_handle->set.timeout = data->set.timeout; in curl_multi_add_handle()
496 data->state.conn_cache->closure_handle->set.server_response_timeout = in curl_multi_add_handle()
498 data->state.conn_cache->closure_handle->set.no_signal = in curl_multi_add_handle()
500 data->state.conn_cache->closure_handle->set.verbose = in curl_multi_add_handle()
/external/curl/docs/
DINTERNALS.md902 `closure_handle` `Curl_easy` in the `Curl_multi` struct to use when needed.
943 `->closure_handle` is described in the 'connectdata' section.