Searched refs:array (Results 1 – 18 of 18) sorted by relevance
/curl/docs/libcurl/ |
H A D | curl_multi_get_handles.md | 31 Returns an array with pointers to all added easy handles. The end of the list 34 Even if there is not a single easy handle added, this still returns an array 37 The returned array contains all the handles that are present at the time of 39 to the multi handle after the handle array was returned, the two data points 42 The order of the easy handles within the array is not guaranteed. 44 The returned array must be freed with a call to curl_free(3) after use. 80 Returns NULL on failure. Otherwise it returns a pointer to an allocated array.
|
H A D | curl_multi_waitfds.md | 43 libcurl fills provided *ufds* array up to the *size*. 87 * deallocations, if needed, like pre-allocated or grow-only array. 91 /* get wait descriptors from the transfers and put them into array. */
|
H A D | curl_mprintf.md | 247 The *const char ** argument is expected to be a pointer to an array of 248 character type (pointer to a string). Characters from the array are written up 252 than the size of the array, the array must contain a terminating null byte.
|
H A D | curl_version_info.md | 134 *feature_names* is a pointer to an array of string pointers, containing the 135 names of the features that libcurl supports. The array is terminated by a NULL 147 *protocols* is a pointer to an array of char * pointers, containing the 149 names are the same as would be used in URLs. The array is terminated by a NULL
|
H A D | curl_formadd.md | 185 **CURLFORM_ARRAY** option, that passes a struct curl_forms array pointer as 187 char pointer. The final element in the array must be a CURLFORM_END. All 188 available options can be used in an array, except the CURLFORM_ARRAY option 189 itself. The last argument in such an array must always be **CURLFORM_END**.
|
/curl/tests/ |
H A D | getpart.pm | 295 my @array; 299 push @array, $_; 302 return @array; 347 my @array; 351 push @array, $_; 355 return @array;
|
/curl/docs/libcurl/opts/ |
H A D | CURLMOPT_PIPELINING_SITE_BL.md | 32 Pass a **hosts** array of char *, ending with a NULL entry. This is a list 34 support HTTP pipelining. The array is copied by libcurl.
|
H A D | CURLMOPT_PIPELINING_SERVER_BL.md | 32 Pass a **servers** array of char *, ending with a NULL entry. This is a list 35 pipelining. The array is copied by libcurl.
|
H A D | CURLINFO_CERTINFO.md | 47 The *certinfo* struct member is an array of linked lists of certificate 49 which is the number of elements in the array. Each certificate's list has
|
/curl/lib/ |
H A D | cookie.c | 1416 struct Cookie **array; in Curl_cookie_getlist() local 1420 array = malloc(sizeof(struct Cookie *) * matches); in Curl_cookie_getlist() 1421 if(!array) in Curl_cookie_getlist() 1427 array[i++] = Curl_node_elem(n); in Curl_cookie_getlist() 1436 Curl_llist_append(list, array[i], &array[i]->getnode); in Curl_cookie_getlist() 1438 free(array); /* remove the temporary data again */ in Curl_cookie_getlist() 1589 struct Cookie **array; in cookie_output() local 1593 if(!array) { in cookie_output() 1605 array[nvalid++] = co; in cookie_output() 1614 free(array); in cookie_output() [all …]
|
H A D | http_aws_sigv4.c | 521 struct pair array[MAX_QUERYPAIRS]; in canon_query() local 522 struct pair *ap = &array[0]; in canon_query() 547 qsort(&array[0], entry, sizeof(struct pair), compare_func); in canon_query() 549 ap = &array[0]; in canon_query()
|
H A D | ftp.c | 1755 unsigned int *array) /* 6 numbers */ in match_pasv_6nums() argument 1771 array[i] = (unsigned int)num; in match_pasv_6nums()
|
/curl/lib/vtls/ |
H A D | sectransp.c | 1481 CFMutableArrayRef array) argument 1514 CFArrayAppendValue(array, cacert); 1532 CFMutableArrayRef array = NULL; local 1545 array = CFArrayCreateMutable(kCFAllocatorDefault, 0, &kCFTypeArrayCallBacks); 1546 if(!array) { 1570 rc = append_cert_to_array(data, certbuf, buflen, array); 1583 rc = append_cert_to_array(data, der, derlen, array); 1603 ret = SecTrustSetAnchorCertificates(trust, array); 1646 if(array) 1647 CFRelease(array);
|
/curl/packages/OS400/ |
H A D | README.OS400 | 161 If taken from an argument array, an additional array entry must follow each 165 parameter/array boundary. 365 and the CURLFORM_END option. This makes possible to use an option array 376 curl_forms array. Please note the form API is deprecated and the MIME API
|
H A D | curl.inc.in | 2690 * This prototype allows use of an option array, or a single "object"
|
/curl/.github/workflows/ |
H A D | linux.yml | 225 …w -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g" 243 CFLAGS="-fsanitize=memory -Wformat -Werror=format-security -Werror=array-bounds -g"
|
/curl/docs/cmdline-opts/ |
H A D | write-out.md | 97 of that header, each value is presented in the JSON array.
|
/curl/m4/ |
H A D | curl-compilers.m4 | 1282 dnl type for a constant array with negative dimension. 1307 dnl type definition of a constant array.
|
Completed in 50 milliseconds