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 500 @param[in] bytes_to_read Number of bytes to be read.
513 unsigned long bytes_to_read,
546 @param[in] bytes_to_read Number of bytes to be read.
556 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);
  /external/chromium/net/tools/flip_server/
ring_buffer.cc 154 int bytes_to_read = size;
156 if (bytes_used < bytes_to_read) {
157 bytes_to_read = bytes_used;
159 char* end = bytes + bytes_to_read;
169 this->bytes_used_ -= bytes_to_read;
170 return bytes_to_read;
  /external/chromium/net/url_request/
url_request_job_tracker_unittest.cc 88 const size_t bytes_to_read = std::min( local
94 memcpy(buf->data(), response_data_.data(), bytes_to_read);
95 response_data_.erase(0, bytes_to_read);
101 bytes_to_read));
104 *bytes_read = bytes_to_read;
  /external/chromium/net/socket/
transport_client_socket_unittest.cc 77 uint32 bytes_to_read,
134 uint32 bytes_to_read, TestCompletionCallback* callback) {
138 while (bytes_read < bytes_to_read) {
  /external/chromium/base/
file_util_proxy.h 151 // |offset + bytes_to_read| in the file. The callback can be NULL.
156 int bytes_to_read,
file_util_proxy.cc 528 int bytes_to_read,
532 buffer_(new char[bytes_to_read]),
533 bytes_to_read_(bytes_to_read),
847 int bytes_to_read,
850 new RelayRead(file, offset, bytes_to_read, callback));
  /external/chromium/net/spdy/
spdy_framer.cc 380 size_t bytes_to_read = std::min(*len, max_bytes); local
381 DCHECK_GE(current_frame_capacity_, current_frame_len_ + bytes_to_read);
382 memcpy(&current_frame_buffer_[current_frame_len_], *data, bytes_to_read);
383 current_frame_len_ += bytes_to_read;
384 *data += bytes_to_read;
385 *len -= bytes_to_read;
386 return bytes_to_read;
    [all...]
  /external/skia/legacy/src/images/
SkImageDecoder_libwebp.cpp 188 const uint32_t bytes_to_read = local
192 const size_t bytes_read = stream->read(input, bytes_to_read);
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 189 const uint32_t bytes_to_read = WEBP_IDECODE_BUFFER_SZ; local
190 const size_t bytes_read = stream->read(input, bytes_to_read);
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c 3767 size_t bytes_to_read; local
    [all...]

Completed in 413 milliseconds