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

12 3 4

  /external/chromium_org/ppapi/cpp/
tcp_socket.cc 111 int32_t bytes_to_read,
115 pp_resource(), buffer, bytes_to_read,
120 pp_resource(), buffer, bytes_to_read,
file_io.h 140 /// @param[in] bytes_to_read The number of bytes to read from
153 int32_t bytes_to_read,
  /external/chromium_org/ppapi/proxy/
file_io_resource.h 48 int32_t bytes_to_read,
124 int32_t bytes_to_read);
143 int32_t bytes_to_read,
tcp_socket_resource.cc 93 int32_t bytes_to_read,
95 return ReadImpl(buffer, bytes_to_read, callback);
tcp_socket_private_resource.h 52 int32_t bytes_to_read,
tcp_socket_resource.h 40 int32_t bytes_to_read,
  /external/chromium_org/base/files/
file_util_proxy.cc 137 explicit ReadHelper(int bytes_to_read)
138 : buffer_(new char[bytes_to_read]),
139 bytes_to_read_(bytes_to_read),
305 int bytes_to_read,
307 if (bytes_to_read < 0) {
310 ReadHelper* helper = new ReadHelper(bytes_to_read);
  /external/chromium_org/device/media_transfer_protocol/
media_transfer_protocol_daemon_client.h 124 // |bytes_to_read| cannot exceed 1 MiB.
128 uint32 bytes_to_read,
137 // |bytes_to_read| cannot exceed 1 MiB.
141 uint32 bytes_to_read,
  /external/chromium_org/ppapi/api/
ppb_url_loader.idl 173 * @param[in] bytes_to_read The number of bytes to read.
185 [in] int32_t bytes_to_read,
ppb_file_io.idl 171 * @param[in] bytes_to_read The number of bytes to read from
187 [in] int32_t bytes_to_read,
ppb_tcp_socket.idl 158 * must be at least as large as <code>bytes_to_read</code>.
159 * @param[in] bytes_to_read The number of bytes to read.
169 [in] int32_t bytes_to_read,
  /external/chromium_org/ppapi/c/
ppb_file_io.h 183 * @param[in] bytes_to_read The number of bytes to read from
199 int32_t bytes_to_read,
319 int32_t bytes_to_read,
  /external/chromium_org/ppapi/thunk/
ppb_url_loader_thunk.cc 94 int32_t bytes_to_read,
101 bytes_to_read,
ppb_file_io_api.h 33 int32_t bytes_to_read,
ppb_file_io_thunk.cc 75 int32_t bytes_to_read,
83 bytes_to_read,
  /external/chromium_org/third_party/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/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/chromium_org/base/
sync_socket_posix.cc 167 const size_t bytes_to_read = std::min(Peek(), length - bytes_read_total); local
170 if (!bytes_to_read)
174 Receive(static_cast<char*>(buffer) + bytes_read_total, bytes_to_read);
176 if (bytes_received != bytes_to_read)
  /external/chromium_org/net/quic/
quic_stream_sequencer.cc 186 int bytes_to_read = min(iov[iov_index].iov_len - iov_offset, local
191 it->second.data() + frame_offset, bytes_to_read);
192 frame_offset += bytes_to_read;
193 iov_offset += bytes_to_read;
  /external/chromium_org/ppapi/cpp/private/
tcp_socket_private.cc 182 int32_t bytes_to_read,
186 pp_resource(), buffer, bytes_to_read,
191 pp_resource(), buffer, bytes_to_read,
196 pp_resource(), buffer, bytes_to_read,
  /external/chromium_org/ipc/
ipc_channel_nacl.cc 307 size_t bytes_to_read = buffer_len - *bytes_read; local
308 if (vec->size() <= bytes_to_read) {
318 std::copy(vec->begin(), vec->begin() + bytes_to_read,
320 vec->erase(vec->begin(), vec->begin() + bytes_to_read);
321 *bytes_read += bytes_to_read;
  /external/chromium_org/chrome_frame/test/
url_request_test.cc 50 UrlmonUrlRequest* request, int bytes_to_read) {
53 base::Unretained(this), request, bytes_to_read));
57 void RequestRead(UrlmonUrlRequest* request, int bytes_to_read) {
58 request->Read(bytes_to_read);
238 ACTION_P4(ManagerRead, loop, mgr, request_id, bytes_to_read) {
241 base::Unretained(mgr), request_id, bytes_to_read));
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fake_pepper_interface_url_loader.cc 338 int32_t bytes_to_read,
360 bytes_to_read = std::min(static_cast<size_t>(bytes_to_read), max_readable);
361 memcpy(buffer, &body.data()[offset], bytes_to_read);
362 loader_resource->read_offset += bytes_to_read;
364 return RunCompletionCallback(&callback, bytes_to_read);
  /development/host/windows/usb/api/
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,
  /external/chromium_org/ppapi/api/private/
ppb_tcp_socket_private.idl 116 * as |bytes_to_read|. May perform a partial read. Returns the number of bytes
119 * This method won't return more than 1 megabyte, so if |bytes_to_read|
125 [in] int32_t bytes_to_read,

Completed in 1165 milliseconds

12 3 4