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

1 2 34

  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_tcp_socket_message_filter.cc 308 int32_t bytes_to_read) {
314 if (bytes_to_read <= 0 ||
315 bytes_to_read > TCPSocketResourceBase::kMaxReadSize) {
321 read_buffer_ = new net::IOBuffer(bytes_to_read);
328 bytes_to_read,
335 bytes_to_read,
    [all...]
pepper_tcp_socket_message_filter.h 92 int32_t bytes_to_read);
  /external/chromium/base/
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_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 325 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) {
327 return iface->Read(file_io, offset, buffer, bytes_to_read, *callback);
379 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) {
381 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 769 milliseconds

1 2 34