HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_read (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /development/host/windows/usb/api/
adb_endpoint_object.cpp 51 ULONG bytes_to_read,
57 bytes_to_read,
77 ULONG bytes_to_read,
82 bytes_to_read,
adb_endpoint_object.h 116 @param[in] bytes_to_read Number of bytes to be read.
128 ULONG bytes_to_read,
156 @param[in] bytes_to_read Number of bytes to be read.
165 ULONG bytes_to_read,
  /external/chromium_org/chrome/app/
image_pre_reader_win.cc 53 // A helper function to read the next |bytes_to_read| bytes from the file
55 bool ReadNextBytes(HANDLE file_handle, void* buffer, size_t bytes_to_read) {
58 DCHECK(bytes_to_read > 0);
61 return bytes_to_read <= std::numeric_limits<DWORD>::max() &&
64 static_cast<DWORD>(bytes_to_read),
67 bytes_read == bytes_to_read;
86 size_t bytes_to_read = desired_length - current_length;
90 bytes_to_read);
139 size_t bytes_to_read = GetPercentageOfSectionLength(section, percentage); local
140 if (bytes_to_read == 0
    [all...]
  /external/chromium_org/net/tools/flip_server/
ring_buffer.cc 125 int bytes_to_read = size;
127 if (bytes_used < bytes_to_read) {
128 bytes_to_read = bytes_used;
130 char* end = bytes + bytes_to_read;
140 this->bytes_used_ -= bytes_to_read;
141 return bytes_to_read;
  /external/chromium_org/ppapi/cpp/
url_loader.h 128 /// @param[in] bytes_to_read The number of bytes to read.
137 int32_t bytes_to_read,
tcp_socket.h 132 /// must be at least as large as <code>bytes_to_read</code>.
133 /// @param[in] bytes_to_read The number of bytes to read.
141 int32_t bytes_to_read,
url_loader.cc 82 int32_t bytes_to_read,
87 pp_resource(), buffer, bytes_to_read, cc.pp_completion_callback());
tcp_socket.cc 111 int32_t bytes_to_read,
115 pp_resource(), buffer, bytes_to_read,
120 pp_resource(), buffer, bytes_to_read,
  /external/chromium_org/ppapi/c/
ppb_url_loader.h 172 * @param[in] bytes_to_read The number of bytes to read.
183 int32_t bytes_to_read,
ppb_tcp_socket.h 174 * must be at least as large as <code>bytes_to_read</code>.
175 * @param[in] bytes_to_read The number of bytes to read.
185 int32_t bytes_to_read,
288 int32_t bytes_to_read,
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/cpp/private/
tcp_socket_private.h 43 int32_t bytes_to_read,
  /external/chromium_org/ppapi/thunk/
ppb_tcp_socket_api.h 29 int32_t bytes_to_read,
ppb_tcp_socket_private_api.h 37 int32_t bytes_to_read,
ppb_url_loader_api.h 42 int32_t bytes_to_read,
  /external/chromium_org/android_webview/browser/net/
android_stream_reader_url_request_job_unittest.cc 317 const int bytes_to_read = bytes_available - offset; local
324 EXPECT_CALL(*stream_reader, ReadRawData(NotNull(), Ge(bytes_to_read)))
325 .WillOnce(Return(bytes_to_read/2));
326 EXPECT_CALL(*stream_reader, ReadRawData(NotNull(), Ge(bytes_to_read)))
327 .WillOnce(Return(bytes_to_read/2));
328 EXPECT_CALL(*stream_reader, ReadRawData(NotNull(), Ge(bytes_to_read)))
340 EXPECT_EQ(bytes_to_read, url_request_delegate_.bytes_received());
350 const int bytes_to_read = bytes_available - offset; local
357 EXPECT_CALL(*stream_reader, ReadRawData(NotNull(), Ge(bytes_to_read)))
359 EXPECT_CALL(*stream_reader, ReadRawData(NotNull(), Ge(bytes_to_read)))
    [all...]
  /external/chromium_org/storage/browser/blob/
blob_url_request_job.cc 321 int bytes_to_read = ComputeBytesToRead(); local
324 if (bytes_to_read == 0) {
332 return ReadBytesItem(item, bytes_to_read);
335 bytes_to_read);
368 int bytes_to_read) {
369 DCHECK_GE(read_buf_->BytesRemaining(), bytes_to_read);
373 bytes_to_read);
375 AdvanceBytesRead(bytes_to_read);
380 int bytes_to_read) {
381 DCHECK_GE(read_buf_->BytesRemaining(), bytes_to_read);
    [all...]
blob_url_request_job.h 76 bool ReadBytesItem(const BlobData::Item& item, int bytes_to_read);
77 bool ReadFileItem(FileStreamReader* reader, int bytes_to_read);
  /external/chromium_org/ppapi/proxy/
tcp_socket_private_resource.cc 80 int32_t bytes_to_read,
82 return ReadImpl(buffer, bytes_to_read, callback);
tcp_socket_resource.cc 93 int32_t bytes_to_read,
95 return ReadImpl(buffer, bytes_to_read, callback);
  /external/chromium_org/device/serial/
data_sink_unittest.cc 79 uint32_t bytes_to_read,
81 DCHECK(bytes_to_read <= static_cast<uint32_t>(expected_data.size()));
88 if (bytes_to_read <= read_buffer_->GetSize()) {
90 read_buffer_->DoneWithError(bytes_to_read, error);
92 read_buffer_->Done(bytes_to_read);
96 bytes_to_read -= read_buffer_->GetSize();
105 data.size() >= bytes_to_read) {
  /external/chromium_org/net/quic/
quic_data_stream.cc 71 size_t bytes_to_read = min(iov[iov_index].iov_len, local
75 decompressed_headers_.data() + bytes_consumed, bytes_to_read);
76 bytes_consumed += bytes_to_read;
  /external/chromium_org/ppapi/c/private/
ppb_tcp_socket_private.h 130 * as |bytes_to_read|. May perform a partial read. Returns the number of bytes
133 * This method won't return more than 1 megabyte, so if |bytes_to_read|
139 int32_t bytes_to_read,
195 int32_t bytes_to_read,
228 int32_t bytes_to_read,
  /external/chromium_org/base/files/
file_proxy.cc 176 ReadHelper(FileProxy* proxy, File file, int bytes_to_read)
178 buffer_(new char[bytes_to_read]),
179 bytes_to_read_(bytes_to_read),
300 int bytes_to_read,
303 if (bytes_to_read < 0)
306 ReadHelper* helper = new ReadHelper(this, file_.Pass(), 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,

Completed in 2112 milliseconds

1 2 3 4