HomeSort by relevance Sort by last modified time
    Searched refs:bytes_read (Results 226 - 250 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/dex2oat/
dex2oat_test.cc 220 ssize_t bytes_read = 0; local
222 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
223 output_ += std::string(buffer, bytes_read);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 853 Py_ssize_t bytes_read = 0; local
908 bytes_read = fread(buf, 1, data_size, fp);
915 if (err || bytes_read != data_size) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 840 Py_ssize_t bytes_read = 0; local
885 bytes_read = fread(buf, 1, data_size, fp);
887 if (err || bytes_read != data_size) {
    [all...]
bz2module.c 259 int bytes_read; local
275 bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1);
277 if (bytes_read == 0) break;
287 bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1);
289 if (bytes_read == 0) break;
    [all...]
  /external/pdfium/core/fxge/ge/
cfx_fontmapper.cpp 316 uint32_t bytes_read = local
318 return bytes_read == size ? GetNameFromTT(buffer_ptr, bytes_read, 6)
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 536 size_t bytes_read = 0; local
538 buffer.get() + HEADER_SIZE, len, offset, &bytes_read);
541 ASSERT(static_cast<uint32_t>(bytes_read) == len);
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.cpp 602 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer))); local
603 if (bytes_read == -1) {
607 if (bytes_read == 0) {
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/test/
video_encoder_test.c 1047 int bytes_read = 0; local
1060 bytes_read = fread(&dataptr[readOffset],1,length,inputBufferFile);
1063 return bytes_read;
  /external/libmicrohttpd/src/microhttpd/
connection.c 1660 int bytes_read; local
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
mixaudio.c 1032 gint bytes_read; local
    [all...]
  /system/core/adb/
commandline.cpp 1068 ssize_t bytes_read = adb_read(fd, cur, bytes_left); local
    [all...]
sysdeps_win32.cpp 1646 const int bytes_read = std::min(len, g_console_input_buffer.size()); local
    [all...]
  /external/netperf/src/
netlib.c 1534 int bytes_read; local
1701 int bytes_read; local
    [all...]
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py     [all...]
  /external/ImageMagick/MagickCore/
nt-base.c 2335 bytes_read, local
    [all...]
  /external/openssh/
sftp-server.c 282 u_int64_t bytes_read, bytes_write; member in struct:Handle
324 handles[i].bytes_read = handles[i].bytes_write = 0;
397 handles[handle].bytes_read += bytes;
411 return (handles[handle].bytes_read);
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]
  /external/libvpx/libvpx/
vpxdec.c 193 static int raw_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read,
232 *bytes_read = frame_size;
    [all...]
  /system/core/debuggerd/libdebuggerd/
tombstone.cpp 268 size_t bytes_read = backtrace->Read(*sp, reinterpret_cast<uint8_t*>(&stack_data[0]), sizeof(word_t) * words); local
269 words = bytes_read / sizeof(word_t);
  /system/core/libbacktrace/
BacktraceOffline.cpp 234 size_t bytes_read = Read(ptr, reinterpret_cast<uint8_t*>(out_value), sizeof(word_t)); local
235 return bytes_read == sizeof(word_t);
  /external/stressapptest/src/
worker.cc 3093 int64 bytes_read = 0; local
    [all...]
  /bionic/libc/tzcode/
localtime.c 2394 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, &header, sizeof(header))); local
    [all...]
  /external/blktrace/
blktrace.c 926 int bytes_read; local
930 bytes_read = __net_recv_data(nc->fd, bnh, sizeof(*bnh));
933 if (bytes_read == sizeof(*bnh))
935 else if (bytes_read == 0)
    [all...]
  /external/e2fsprogs/e2fsck/
e2fsck.h 148 unsigned long long bytes_read; member in struct:resource_track
  /external/fmtlib/test/
gmock-gtest-all.cc     [all...]

Completed in 2963 milliseconds

1 2 3 4 5 6 7 8 91011>>