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

1 2 34

  /external/chromium_org/net/spdy/
spdy_framer.cc 855 size_t bytes_to_read = std::min(*len, max_bytes); local
856 if (bytes_to_read > 0) {
858 current_frame_buffer_length_ + bytes_to_read);
861 bytes_to_read);
862 current_frame_buffer_length_ += bytes_to_read;
863 *data += bytes_to_read;
864 *len -= bytes_to_read;
866 return bytes_to_read;
    [all...]
  /external/chromium_org/chrome_frame/
urlmon_url_request_private.h 30 virtual bool Read(int bytes_to_read);
  /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/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.cc 359 const int bytes_to_read = sizeof(line)-1 - linelen; local
360 assert(bytes_to_read > 0); // because the memmove recovered >=1 bytes
361 chars_read = read(fd, line + linelen, bytes_to_read);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.cc 344 const int bytes_to_read = sizeof(line)-1 - linelen; local
345 assert(bytes_to_read > 0); // because the memmove recovered >=1 bytes
346 chars_read = read(fd, line + linelen, bytes_to_read);
    [all...]
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
pnacl_shim.c 314 static int32_t Pnacl_M14_PPB_FileIO_Read(PP_Resource file_io, int64_t offset, char* buffer, int32_t bytes_to_read, struct PP_CompletionCallback* callback) {
316 return iface->Read(file_io, offset, buffer, bytes_to_read, *callback);
368 static int32_t Pnacl_M25_PPB_FileIO_Read(PP_Resource file_io, int64_t offset, char* buffer, int32_t bytes_to_read, struct PP_CompletionCallback* callback) {
370 return iface->Read(file_io, offset, buffer, bytes_to_read, *callback);
    [all...]
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c 3767 size_t bytes_to_read; local
    [all...]

Completed in 664 milliseconds

1 2 34