Home
last modified time | relevance | path

Searched refs:size (Results 101 – 125 of 319) sorted by relevance

12345678910>>...13

/curl/tests/data/
H A Dtest16114 <size>
16 </size>
H A Dtest13521 <size>
23 </size>
H A Dtest105719 <size>
21 </size>
H A Dtest14112 <size>
14 </size>
H A Dtest104415 <size>
17 </size>
H A Dtest11016 <size>
18 </size>
H A Dtest103717 <size>
19 </size>
H A Dtest103812 <size>
14 </size>
/curl/docs/examples/
H A Dsftpget.c48 static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, in my_fwrite() argument
58 return fwrite(buffer, size, nmemb, out->stream); in my_fwrite()
H A Dftpgetinfo.c34 static size_t throw_away(void *ptr, size_t size, size_t nmemb, void *data) in throw_away() argument
40 return (size_t)(size * nmemb); in throw_away()
H A Dhtmltitle.cpp74 static int writer(char *data, size_t size, size_t nmemb, in writer() argument
80 writerData->append(data, size*nmemb); in writer()
82 return size * nmemb; in writer()
249 htmlParseChunk(ctxt, html.c_str(), html.size(), 0); in parseHtml()
H A Dhref_extractor.c39 static size_t write_callback(void *buffer, size_t size, size_t nmemb, in write_callback() argument
42 size_t realsize = size * nmemb, p; in write_callback()
H A Dhttpput.c43 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream) in read_callback() argument
51 retcode = fread(ptr, size, nmemb, stream); in read_callback()
/curl/tests/unit/
H A Dunit1652.c46 int debugf_cb(CURL *handle, curl_infotype type, char *buf, size_t size,
55 debugf_cb(CURL *handle, curl_infotype type, char *buf, size_t size, in debugf_cb() argument
63 memcpy(output, buf, size); in debugf_cb()
/curl/tests/libtest/
H A Dlib651.c40 int size = (int)sizeof(testbuf)/1000; in test() local
42 for(i = 0; i < size ; i++) in test()
H A Dlib571.c55 static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream) in rtp_write() argument
61 size_t failure = (size && nmemb) ? 0 : 1; in rtp_write()
65 message_size = curlx_uztosi(size * nmemb) - 4; in rtp_write()
94 return size * nmemb; in rtp_write()
H A Dlib1975.c28 static size_t read_callback(char *buffer, size_t size, size_t nitems, in read_callback() argument
32 (void)size; /* unused */ in read_callback()
H A Dlib1971.c28 static size_t read_callback(char *buffer, size_t size, size_t nitems, in read_callback() argument
32 (void)size; /* unused */ in read_callback()
H A Dlib508.c35 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) in read_callback() argument
39 if(size*nmemb < 1) in read_callback()
H A Dlib1901.c41 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream) in read_callback() argument
44 (void)size; in read_callback()
H A Dlib1518.c30 static size_t writecb(char *buffer, size_t size, size_t nitems, in writecb() argument
34 (void)size; in writecb()
/curl/docs/libcurl/
H A Dcurl_mime_data_cb.md28 size_t readfunc(char *buffer, size_t size, size_t nitems, void *arg);
65 should be filled up with at most *size* multiplied with *nitems* number
115 curl_off_t size;
119 size_t read_callback(char *buffer, size_t size, size_t nitems, void *arg)
122 curl_off_t sz = p->size - p->position;
124 nitems *= size;
139 offset += p->size;
161 hugectl.size = sizeof(hugedata);
163 curl_mime_data_cb(part, hugectl.size, read_callback, seek_callback, NULL,
/curl/docs/libcurl/opts/
H A DCURLOPT_COPYPOSTFIELDS.md38 If the size has not been set prior to CURLOPT_COPYPOSTFIELDS(3), the data is
39 assumed to be a null-terminated string; else the stored size informs the
40 library about the byte count to copy. In any case, the size must not be
66 /* size of the data to copy from the buffer and send in the request */
/curl/lib/
H A Dmd5.c297 unsigned long size);
448 } while(size -= 64); in my_md5_body()
472 unsigned long size) in my_md5_update() argument
478 ctx->lo = (saved_lo + size) & 0x1fffffff; in my_md5_update()
481 ctx->hi += (MD5_u32plus)size >> 29; in my_md5_update()
488 if(size < available) { in my_md5_update()
489 memcpy(&ctx->buffer[used], data, size); in my_md5_update()
495 size -= available; in my_md5_update()
499 if(size >= 64) { in my_md5_update()
501 size &= 0x3f; in my_md5_update()
[all …]
/curl/docs/cmdline-opts/
H A Dignore-content-length.md5 Help: Ignore the size of the remote resource
22 For FTP, this makes curl skip the SIZE command to figure out the size before

Completed in 22 milliseconds

12345678910>>...13