Home
last modified time | relevance | path

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

/third_party/curl/docs/examples/
Dmulti-event.c42 static void curl_perform(int fd, short event, void *arg);
52 context->event = event_new(base, sockfd, 0, curl_perform, context); in create_curl_context()
122 static void curl_perform(int fd, short event, void *arg) in curl_perform() function
191 curl_perform, curl_context); in handle_socket()
Dmulti-uv.c132 static void curl_perform(uv_poll_t *req, int status, int events) in curl_perform() function
193 uv_poll_start(&curl_context->poll_handle, events, curl_perform); in handle_socket()
/third_party/libuv/docs/code/uvwget/
Dmain.c81 void curl_perform(uv_poll_t *req, int status, int events) { in curl_perform() function
123 uv_poll_start(&curl_context->poll_handle, UV_READABLE, curl_perform); in handle_socket()
126 uv_poll_start(&curl_context->poll_handle, UV_WRITABLE, curl_perform); in handle_socket()
/third_party/libuv/docs/src/guide/
Dutilities.rst276 mask with the new value. ``curl_perform`` is the crux of this program.