Searched refs:item (Results 1 – 15 of 15) sorted by relevance
/curl/lib/ |
H A D | slist.c | 38 struct curl_slist *item; in slist_get_last() local 45 item = list; in slist_get_last() 46 while(item->next) { in slist_get_last() 47 item = item->next; in slist_get_last() 49 return item; in slist_get_last() 134 struct curl_slist *item; in curl_slist_free_all() local 139 item = list; in curl_slist_free_all() 141 next = item->next; in curl_slist_free_all() 142 Curl_safefree(item->data); in curl_slist_free_all() 143 free(item); in curl_slist_free_all() [all …]
|
H A D | ftp.c | 1603 struct curl_slist *item; in ftp_state_quote() local 1608 item = data->set.quote; in ftp_state_quote() 1630 if(item) { in ftp_state_quote() 1635 item = item->next; in ftp_state_quote() 1638 if(item) { in ftp_state_quote() 1639 char *cmd = item->data; in ftp_state_quote() 3415 struct curl_slist *item; in ftp_sendquote() local 3419 item = quote; in ftp_sendquote() 3420 while(item) { in ftp_sendquote() 3421 if(item->data) { in ftp_sendquote() [all …]
|
/curl/src/ |
H A D | tool_main.c | 240 struct curl_slist *item, *head = GetLoadedModulePaths(); in wmain() local 241 for(item = head; item; item = item->next) in wmain() 242 printf("%s\n", item->data); in wmain()
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_CLOSESOCKETFUNCTION.md | 24 int closesocket_callback(void *clientp, curl_socket_t item); 42 CURLOPT_CLOSESOCKETDATA(3). *item* is the socket libcurl wants to be 58 static int closesocket(void *clientp, curl_socket_t item) 63 printf("libcurl wants to close %d now\n", (int)item);
|
H A D | CURLOPT_CLOSESOCKETDATA.md | 47 static int closesocket(void *clientp, curl_socket_t item) 52 printf("libcurl wants to close %d now\n", (int)item);
|
H A D | CURLOPT_TRAILERFUNCTION.md | 43 header item.
|
H A D | CURLOPT_HTTPHEADER.md | 56 because libcurl adds CRLF after each header item itself. Failure to comply
|
/curl/tests/libtest/ |
H A D | lib3207.c | 217 struct curl_slist *item = ctx[i].contents; in test() local 218 while(item) { in test() 219 printf("%s", item->data); in test() 220 item = item->next; in test()
|
H A D | lib1960.c | 41 static int closesocket_cb(void *clientp, curl_socket_t item) in closesocket_cb() argument 44 (void)item; in closesocket_cb()
|
/curl/docs/examples/ |
H A D | externalsocket.c | 65 static int closecb(void *clientp, curl_socket_t item) in closecb() argument 68 printf("libcurl wants to close %d now\n", (int)item); in closecb()
|
/curl/tests/data/ |
H A D | test1294 | 49 …nsequence to the reader, in this stage of the business at all events; the item of mortality whose … 61 …nsequence to the reader, in this stage of the business at all events; the item of mortality whose …
|
/curl/docs/libcurl/ |
H A D | curl_mime_data_cb.md | 97 the pointed item to be shared between the original and the copied handle. In
|
/curl/lib/vtls/ |
H A D | sectransp.c | 668 CFTypeRef item = (CFTypeRef) CFArrayGetValueAtIndex(items, i); in CopyIdentityFromPKCS12File() local 669 CFTypeID itemID = CFGetTypeID(item); in CopyIdentityFromPKCS12File() 673 (CFDictionaryRef) item, in CopyIdentityFromPKCS12File() 682 (SecCertificateRef) item, in CopyIdentityFromPKCS12File()
|
/curl/include/curl/ |
H A D | curl.h | 436 (*curl_closesocket_callback)(void *clientp, curl_socket_t item);
|
/curl/docs/ |
H A D | FAQ | 517 See also item 3.14 regarding JavaScript. 980 curl supports HTTP redirects well (see item 3.8). Browsers generally support 1093 OS-specific mechanism, then signaling libcurl to abort (see also item 5.13).
|
Completed in 40 milliseconds