HomeSort by relevance Sort by last modified time
    Searched refs:copyBuffer (Results 26 - 42 of 42) sorted by null

12

  /external/libmicrohttpd/src/testcurl/
test_put.c 70 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
141 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
197 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
255 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
323 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_put_chunked.c 71 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
151 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
207 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
265 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
333 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_get.c 66 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
128 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
178 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
229 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
289 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
426 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
569 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_post.c 80 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
181 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
235 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
290 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
354 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
565 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
perf_get_concurrent.c 127 copyBuffer (void *ptr,
188 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_parse_cookies.c 50 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
136 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_process_arguments.c 50 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
140 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_quiesce.c 59 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
166 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
  /external/libmicrohttpd/src/testcurl/https/
tls_test_common.c 97 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
150 copyBuffer (void *ptr, size_t size, size_t nmemb, void *ctx)
226 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_https_session_info.c 134 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_empty_response.c 99 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_https_get_select.c 111 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
test_https_sni.c 206 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITObjectCacheTest.cpp 33 ObjMap[ModuleID] = copyBuffer(Obj);
64 MemoryBuffer *copyBuffer(MemoryBufferRef Buf) {
  /frameworks/native/cmds/rawbu/
backup.cpp 40 static char copyBuffer[8192];
204 int amt = size > (off_t)sizeof(copyBuffer) ? sizeof(copyBuffer) : (int)size;
205 int readLen = fread(copyBuffer, 1, amt, src);
216 int writeLen = fwrite(copyBuffer, 1, readLen, dest);
  /prebuilts/go/darwin-x86/src/io/
io.go 351 return copyBuffer(dst, src, nil)
354 // CopyBuffer is identical to Copy except that it stages through the
357 // zero length, CopyBuffer panics.
358 func CopyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
360 panic("empty buffer in io.CopyBuffer")
362 return copyBuffer(dst, src, buf)
365 // copyBuffer is the actual implementation of Copy and CopyBuffer.
367 func copyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
  /prebuilts/go/linux-x86/src/io/
io.go 351 return copyBuffer(dst, src, nil)
354 // CopyBuffer is identical to Copy except that it stages through the
357 // zero length, CopyBuffer panics.
358 func CopyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
360 panic("empty buffer in io.CopyBuffer")
362 return copyBuffer(dst, src, buf)
365 // copyBuffer is the actual implementation of Copy and CopyBuffer.
367 func copyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {

Completed in 688 milliseconds

12