Home
last modified time | relevance | path

Searched refs:size (Results 251 – 275 of 319) sorted by relevance

1...<<111213

/curl/lib/
H A Dftp.c227 size_t *size);
438 curl_socklen_t size = (curl_socklen_t) sizeof(add); in AcceptServerConnect() local
442 size = sizeof(add); in AcceptServerConnect()
444 s = accept(sock, (struct sockaddr *) &add, &size); in AcceptServerConnect()
2665 size = ftp->downloadsize; in ftp_state_get_resp()
2668 size = data->req.size = data->req.maxdownload; in ftp_state_get_resp()
2679 conn->proto.ftpc.retr_size_saved = size; in ftp_state_get_resp()
3548 if((-1 != data->req.size) && in ftp_done()
3549 (data->req.size != data->req.bytecount) && in ftp_done()
3557 (data->req.size > 0)) { in ftp_done()
[all …]
H A Dsmtp.c604 char *size = NULL; in smtp_perform_mail() local
726 size = aprintf("%" FMT_OFF_T, data->state.infilesize); in smtp_perform_mail()
728 if(!size) { in smtp_perform_mail()
762 size ? " SIZE=" : "", /* Optional on SIZE support */ in smtp_perform_mail()
763 size ? size : "", /* */ in smtp_perform_mail()
770 free(size); in smtp_perform_mail()
1598 data->req.size = -1; in smtp_regular_transfer()
H A Dcontent_encoding.c109 zalloc_cb(voidpf opaque, unsigned int items, unsigned int size) in zalloc_cb() argument
113 return (voidpf) calloc(items, size); in zalloc_cb()
775 in.size = nbytes; in zstd_do_write()
780 out.size = DSIZ; in zstd_do_write()
792 if((in.pos == nbytes) && (out.pos < out.size)) in zstd_do_write()
H A Dcurl_config.h.cmake652 /* The size of `int', as computed by sizeof. */
655 /* The size of `long', as computed by sizeof. */
658 /* The size of `long long', as computed by sizeof. */
661 /* The size of `off_t', as computed by sizeof. */
664 /* The size of `curl_off_t', as computed by sizeof. */
667 /* The size of `curl_socket_t', as computed by sizeof. */
670 /* The size of `size_t', as computed by sizeof. */
673 /* The size of `time_t', as computed by sizeof. */
H A Dcurl_trc.h55 char *ptr, size_t size);
/curl/docs/libcurl/opts/
H A DCURLOPT_MAXCONNECTS.md19 CURLOPT_MAXCONNECTS - maximum connection cache size
H A DCURLOPT_CAINFO_BLOB.md41 and size) about a memory block with binary data of PEM encoded content holding
H A DCURLOPT_PROXY_CAINFO_BLOB.md45 and size) about a memory block with binary data of PEM encoded content holding
H A DCURLOPT_DIRLISTONLY.md38 "scan listing" which can then be used to determine the size of an email.
H A DCURLINFO_TLS_SSL_PTR.md146 static size_t wf(void *ptr, size_t size, size_t nmemb, void *stream)
155 return size * nmemb;
/curl/tests/server/
H A Dsockfilt.c457 LARGE_INTEGER size, pos; in select_ws_wait_thread() local
488 size.QuadPart = 0; in select_ws_wait_thread()
489 size.LowPart = GetFileSize(handle, &length); in select_ws_wait_thread()
490 if((size.LowPart != INVALID_FILE_SIZE) || in select_ws_wait_thread()
492 size.HighPart = (LONG)length; in select_ws_wait_thread()
499 if(size.QuadPart == pos.QuadPart) { in select_ws_wait_thread()
/curl/lib/vtls/
H A Dx509asn1.c341 int size = 1; in utf8asn1str() local
346 size = 2; in utf8asn1str()
349 size = 4; in utf8asn1str()
362 if(inlength % size) in utf8asn1str()
377 switch(size) { in utf8asn1str()
H A Dwolfssl.c635 wssl_get_default_ciphers(bool tls13, char *buf, size_t size) in wssl_get_default_ciphers() argument
648 if(buf && len + n + 1 <= size) { in wssl_get_default_ciphers()
1177 unsigned long size) in wolfssl_strerror() argument
1179 DEBUGASSERT(size > 40); in wolfssl_strerror()
1182 wolfSSL_ERR_error_string_n(error, buf, size); in wolfssl_strerror()
1707 static size_t wolfssl_version(char *buffer, size_t size) in wolfssl_version() argument
1710 return msnprintf(buffer, size, "wolfSSL/%s", wolfSSL_lib_version()); in wolfssl_version()
1712 return msnprintf(buffer, size, "wolfSSL/%s", WOLFSSL_VERSION); in wolfssl_version()
H A Dvtls.h132 void Curl_ssl_version(char *buffer, size_t size);
H A Dvtls_int.h119 size_t (*version)(char *buffer, size_t size);
/curl/docs/libcurl/
H A Dcurl_easy_unescape.md36 uses strlen() on **input** to find out the size.
H A Dcurl_easy_option_next.md60 /* The CURLOPTTYPE_* id ranges can still be used to figure out what type/size
/curl/include/curl/
H A Dcurl.h282 size_t size,
321 curl_off_t size; member
401 size_t size,
467 typedef void *(*curl_malloc_callback)(size_t size);
469 typedef void *(*curl_realloc_callback)(void *ptr, size_t size);
471 typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size);
492 size_t size, /* size of the data pointed to */
H A Dmulti.h478 unsigned int size,
/curl/docs/examples/
H A Dhiperfifo.c309 static size_t write_cb(void *ptr, size_t size, size_t nmemb, void *data) in write_cb() argument
313 return size * nmemb; in write_cb()
H A Dghiper.c275 static size_t write_cb(void *ptr, size_t size, size_t nmemb, void *data) in write_cb() argument
277 size_t realsize = size * nmemb; in write_cb()
H A Devhiperfifo.c311 static size_t write_cb(void *ptr, size_t size, size_t nmemb, void *data) in write_cb() argument
313 size_t realsize = size * nmemb; in write_cb()
/curl/tests/data/
H A Dtest316174 HTTP GET brotli compressed content of size more than CURL_MAX_WRITE_SIZE
H A Dtest397174 HTTP GET zstd compressed content of size more than CURL_MAX_WRITE_SIZE
/curl/docs/cmdline-opts/
H A Dlist-only.md36 to see if a specific message-id exists on the server and what size it is.

Completed in 80 milliseconds

1...<<111213