HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_read (Results 51 - 75 of 82) 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,
  /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/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/ppapi/proxy/
ppb_tcp_socket_private_proxy.cc 47 virtual void SendRead(int32_t bytes_to_read) OVERRIDE;
106 void TCPSocket::SendRead(int32_t bytes_to_read) {
107 SendToBrowser(new PpapiHostMsg_PPBTCPSocket_Read(socket_id_, bytes_to_read));
url_loader_resource.cc 156 int32_t bytes_to_read,
164 if (bytes_to_read <= 0 || !buffer)
168 user_buffer_size_ = bytes_to_read;
url_loader_resource.h 60 int32_t bytes_to_read,
  /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/chrome/browser/extensions/api/serial/
serial_api.cc 203 if (params_->bytes_to_read <= 0 || params_->bytes_to_read >= 1024 * 1024) {
214 new net::IOBufferWithSize(params_->bytes_to_read));
  /external/chromium_org/net/quic/
reliable_quic_stream.cc 111 size_t bytes_to_read = min(iov[iov_index].iov_len, local
115 decompressed_headers_.data() + bytes_consumed, bytes_to_read);
116 bytes_consumed += bytes_to_read;
  /external/chromium_org/ppapi/shared_impl/
tcp_socket_shared.cc 255 int32_t bytes_to_read,
257 if (!buffer || bytes_to_read <= 0)
266 bytes_to_read_ = std::min(bytes_to_read, kMaxReadSize);
  /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/content/browser/renderer_host/pepper/
pepper_tcp_socket.h 66 void Read(int32 bytes_to_read);
pepper_tcp_socket.cc 167 void PepperTCPSocket::Read(int32 bytes_to_read) {
180 if (bytes_to_read <= 0 ||
181 bytes_to_read > ppapi::TCPSocketShared::kMaxReadSize) {
186 read_buffer_ = new net::IOBuffer(bytes_to_read);
189 bytes_to_read,
pepper_message_filter.h 139 void OnTCPRead(uint32 socket_id, int32_t bytes_to_read);
pepper_message_filter.cc 301 void PepperMessageFilter::OnTCPRead(uint32 socket_id, int32_t bytes_to_read) {
308 iter->second->Read(bytes_to_read);
  /external/chromium_org/device/media_transfer_protocol/
media_transfer_protocol_daemon_client.cc 139 uint32 bytes_to_read,
148 writer.AppendUint32(bytes_to_read);
161 uint32 bytes_to_read,
170 writer.AppendUint32(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 81 uint32 bytes_to_read,
141 uint32 bytes_to_read, TestCompletionCallback* callback) {
145 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_org/chrome_frame/test/
automation_client_mock.h 57 MOCK_METHOD2(OnRequestRead, void(int request_id, int bytes_to_read));

Completed in 1841 milliseconds

1 23 4