HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_read (Results 1 - 13 of 13) sorted by null

  /development/host/windows/usb/api/
adb_endpoint_object.cpp 51 ULONG bytes_to_read,
57 bytes_to_read,
77 ULONG bytes_to_read,
82 bytes_to_read,
adb_endpoint_object.h 116 @param[in] bytes_to_read Number of bytes to be read.
128 ULONG bytes_to_read,
156 @param[in] bytes_to_read Number of bytes to be read.
165 ULONG bytes_to_read,
adb_api.h 503 @param[in] bytes_to_read Number of bytes to be read.
516 unsigned long bytes_to_read,
549 @param[in] bytes_to_read Number of bytes to be read.
559 unsigned long bytes_to_read,
adb_api.cpp 393 unsigned long bytes_to_read,
404 bytes_to_read,
443 unsigned long bytes_to_read,
453 adb_object->SyncRead(buffer, bytes_to_read, bytes_read, time_out);
  /system/bt/osi/test/
eager_reader_test.cpp 106 int bytes_to_read = (length - i) > 28 ? 28 : (length - i); local
107 int bytes_read = eager_reader_read(reader, buffer, bytes_to_read, false);
108 EXPECT_EQ(bytes_to_read, bytes_read);
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 83 int32_t bytes_to_read = local
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
  /external/lldb/source/Plugins/Process/elf-core/
ProcessElfCore.cpp 292 size_t bytes_to_read = size; // Number of bytes to read from the core file local
300 if (bytes_to_read > bytes_left)
302 zero_fill_size = bytes_to_read - bytes_left;
303 bytes_to_read = bytes_left;
307 if (bytes_to_read)
308 bytes_copied = core_objfile->CopyData(offset + file_start, bytes_to_read, buf);
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 422 size_t bytes_to_read = size; local
423 if (bytes_to_read > bytes_left)
424 bytes_to_read = bytes_left;
425 return core_objfile->CopyData (core_memory_entry->data.GetRangeBase() + offset, bytes_to_read, buf);
  /device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
QCameraMjpegDecode.cpp 622 int bytes_to_read, bytes_read, rc; local
631 bytes_to_read = (length < buf_size) ? length : buf_size;
634 ALOGD("%s: buf_ptr = %p, start_offset = %d, length = %d buf_size = %d bytes_to_read = %d", __func__, buf_ptr, start_offset, length, buf_size, bytes_to_read);
635 if (bytes_to_read)
639 memcpy(buf_ptr, (char *)mjpegd->inputMjpegBuffer + start_offset, bytes_to_read);
644 bytes_read = bytes_to_read;
  /external/libpcap/
sf-pcap-ng.c 231 read_bytes(FILE *fp, void *buf, size_t bytes_to_read, int fail_on_eof,
236 amt_read = fread(buf, 1, bytes_to_read, fp);
237 if (amt_read != bytes_to_read) {
247 (unsigned long)bytes_to_read,
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
jp2.c 1106 OPJ_UINT32 bytes_to_read = (OPJ_UINT32)((channel_size[i]+7)>>3); local
    [all...]
  /external/lldb/source/Target/
Process.cpp     [all...]
Target.cpp 1412 addr_t bytes_to_read = std::min<addr_t>(bytes_left, cache_line_bytes_left); local
    [all...]

Completed in 535 milliseconds