Home
last modified time | relevance | path

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

12345678910>>...13

/curl/docs/examples/
H A Dftpget.c38 static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream) in my_fwrite() argument
47 return fwrite(buffer, size, nmemb, out->stream); in my_fwrite()
H A Dftpsget.c39 static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, in my_fwrite() argument
49 return fwrite(buffer, size, nmemb, out->stream); in my_fwrite()
H A Dcertinfo.c32 static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream) in wrfu() argument
36 return size * nmemb; in wrfu()
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/libtest/
H A Dlib1514.c40 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) in read_callback() argument
44 if(size*nmemb < 1) in read_callback()
H A Dlib651.c41 int size = (int)sizeof(buffer)/1000; in test() local
43 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 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 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 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()
/curl/tests/data/
H A Dtest105719 <size>
21 </size>
H A Dtest13521 <size>
23 </size>
H A Dtest14112 <size>
14 </size>
H A Dtest16114 <size>
16 </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>
H A Dtest103912 <size>
14 </size>
/curl/tests/http/clients/
H A Dh2-download.c69 char *data, size_t size, in debug_cb() argument
96 if(size > 0) { in debug_cb()
99 for(i = 0; i < size - 1; i++) { in debug_cb()
113 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
120 (void)fwrite(data, size, 1, output); in debug_cb()
121 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
131 fprintf(output, "[%ld bytes data]\n", (long)size); in debug_cb()
/curl/docs/libcurl/
H A Dcurl_mime_data_cb.md27 size_t readfunc(char *buffer, size_t size, size_t nitems, void *arg);
64 should be filled up with at most *size* multiplied with *nitems* number
112 curl_off_t size;
116 size_t read_callback(char *buffer, size_t size, size_t nitems, void *arg)
119 curl_off_t sz = p->size - p->position;
121 nitems *= size;
136 offset += p->size;
158 hugectl.size = sizeof(hugedata);
160 curl_mime_data_cb(part, hugectl.size, read_callback, seek_callback, NULL,

Completed in 87 milliseconds

12345678910>>...13