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

1 23 4

  /external/chromium_org/ppapi/thunk/
ppb_tcp_socket_private_thunk.cc 98 int32_t bytes_to_read,
103 return enter.SetResult(enter.object()->Read(buffer, bytes_to_read,
ppb_tcp_socket_thunk.cc 82 int32_t bytes_to_read,
89 bytes_to_read,
  /external/chromium_org/remoting/host/linux/
audio_pipe_reader.cc 124 int64 bytes_to_read = stream_position_bytes - last_capture_position_; local
129 data.resize(pos + bytes_to_read);
158 // to read |bytes_to_read| bytes, but in case it's misbehaving we need to make
  /development/host/windows/usb/api/
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_org/native_client_sdk/src/examples/api/file_io/
file_io.cc 236 int32_t bytes_to_read = info.size; local
237 while (bytes_to_read > 0) {
244 bytes_to_read -= bytes_read;
  /external/chromium_org/net/quic/
quic_data_stream.cc 75 size_t bytes_to_read = min(iov[iov_index].iov_len, local
79 decompressed_headers_.data() + bytes_consumed, bytes_to_read);
80 bytes_consumed += bytes_to_read;
  /external/chromium_org/ppapi/cpp/
file_io.cc 93 int32_t bytes_to_read,
97 offset, buffer, bytes_to_read, cc.pp_completion_callback());
100 offset, buffer, bytes_to_read, cc.pp_completion_callback());
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc 54 size_t bytes_to_read = std::min( local
56 std::memmove(buffer->data() + offset, chunk.data(), bytes_to_read);
57 offset += bytes_to_read;
58 if (bytes_to_read < chunk.size()) {
62 (*pending_data)[index]->erase(0, bytes_to_read);
  /external/chromium_org/chrome_frame/
urlmon_url_request.cc 105 bool UrlmonUrlRequest::Read(int bytes_to_read) {
107 DCHECK_GE(bytes_to_read, 0);
124 if ((bytes_copied = SendDataToDelegate(bytes_to_read))) {
130 DVLOG(1) << __FUNCTION__ << me() << " pending: " << bytes_to_read;
131 pending_read_size_ = bytes_to_read;
203 size_t UrlmonUrlRequest::SendDataToDelegate(size_t bytes_to_read) {
206 DCHECK_GT(bytes_to_read, 0U);
211 HRESULT hr = ReadStream(cache_, bytes_to_read, &read_data);
212 if (hr == S_FALSE || read_data.length() < bytes_to_read) {
227 HRESULT hr = ReadStream(pending, bytes_to_read, &read_data)
    [all...]
urlmon_url_request.h 85 virtual void ReadRequest(int request_id, int bytes_to_read);
chrome_frame_delegate.h 112 virtual void OnRequestRead(int request_id, int bytes_to_read) {}
  /external/chromium_org/ppapi/proxy/
url_loader_resource.cc 156 int32_t bytes_to_read,
169 if (bytes_to_read <= 0 || !buffer)
173 user_buffer_size_ = bytes_to_read;
url_loader_resource.h 60 int32_t bytes_to_read,
tcp_socket_resource_base.cc 222 int32_t bytes_to_read,
224 if (!buffer || bytes_to_read <= 0)
233 bytes_to_read_ = std::min(bytes_to_read, kMaxReadSize);
tcp_socket_resource_base.h 87 int32_t bytes_to_read,
  /external/chromium_org/base/files/
file_util_proxy.h 105 // |offset + bytes_to_read| in the file. The callback can be null.
107 // This returns false if |bytes_to_read| is less than zero, or
113 int bytes_to_read,
  /external/chromium_org/device/media_transfer_protocol/
media_transfer_protocol_daemon_client.cc 140 uint32 bytes_to_read,
149 writer.AppendUint32(bytes_to_read);
162 uint32 bytes_to_read,
171 writer.AppendUint32(bytes_to_read);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fake_pepper_interface_url_loader.h 80 int32_t bytes_to_read,
fake_pepper_interface_html5fs.cc 88 int32_t bytes_to_read) {
92 bytes_to_read =
93 std::max(0, std::min<int32_t>(bytes_to_read, contents_.size() - offset));
94 memcpy(buffer, contents_.data() + offset, bytes_to_read);
95 return bytes_to_read;
363 int32_t bytes_to_read,
370 if (bytes_to_read < 0)
381 int32_t result = file_io_resource->node->Read(offset, buffer, bytes_to_read);
fake_pepper_interface_html5fs.h 40 int32_t Read(int64_t offset, char* buffer, int32_t bytes_to_read);
112 int32_t bytes_to_read,
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_tcp_socket.cc 169 void PepperTCPSocket::Read(int32 bytes_to_read) {
182 if (bytes_to_read <= 0 ||
183 bytes_to_read > ppapi::TCPSocketShared::kMaxReadSize) {
188 read_buffer_ = new net::IOBuffer(bytes_to_read);
191 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_org/net/socket/
transport_client_socket_unittest.cc 82 uint32 bytes_to_read,
142 uint32 bytes_to_read, TestCompletionCallback* callback) {
146 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,
  /external/chromium_org/chrome_frame/test/
automation_client_mock.h 57 MOCK_METHOD2(OnRequestRead, void(int request_id, int bytes_to_read));

Completed in 1443 milliseconds

1 23 4