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

12 3 4

  /external/chromium_org/chrome_frame/
plugin_url_request.h 79 void ReadUrlRequest(int request_id, int bytes_to_read) {
80 ReadRequest(request_id, bytes_to_read);
110 virtual void ReadRequest(int request_id, int bytes_to_read) = 0;
  /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/ppapi/proxy/
file_io_resource.h 44 int32_t bytes_to_read,
92 ReadOp(PP_FileHandle file_handle, int64_t offset, int32_t bytes_to_read);
111 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_tcp_socket.idl 133 * must be at least as large as <code>bytes_to_read</code>.
134 * @param[in] bytes_to_read The number of bytes to read.
144 [in] int32_t bytes_to_read,
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 168 * @param[in] bytes_to_read The number of bytes to read from
182 [in] int32_t bytes_to_read,
  /external/chromium_org/ppapi/c/
ppb_file_io.h 180 * @param[in] bytes_to_read The number of bytes to read from
194 int32_t bytes_to_read,
313 int32_t bytes_to_read,
  /external/chromium_org/ppapi/shared_impl/
tcp_socket_shared.h 66 virtual void SendRead(int32_t bytes_to_read) = 0;
108 int32_t bytes_to_read,
  /external/chromium_org/ppapi/thunk/
ppb_tcp_socket_thunk.cc 64 int32_t bytes_to_read,
71 bytes_to_read,
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/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/content/renderer/pepper/
ppb_tcp_socket_private_impl.h 29 virtual void SendRead(int32_t bytes_to_read) OVERRIDE;
ppb_tcp_socket_private_impl.cc 64 void PPB_TCPSocket_Private_Impl::SendRead(int32_t bytes_to_read) {
66 socket_id_, bytes_to_read));
  /external/chromium_org/net/quic/
quic_stream_sequencer.cc 172 int bytes_to_read = min(iov[iov_index].iov_len - iov_offset, local
177 it->second.data() + frame_offset, bytes_to_read);
178 frame_offset += bytes_to_read;
179 iov_offset += bytes_to_read;
  /external/chromium_org/ppapi/cpp/
file_io.h 138 /// @param[in] bytes_to_read The number of bytes to read from
149 int32_t 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/ppapi/shared_impl/private/
tcp_socket_private_impl.h 52 int32_t 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 52 UrlmonUrlRequest* request, int bytes_to_read) {
55 base::Unretained(this), request, bytes_to_read));
59 void RequestRead(UrlmonUrlRequest* request, int bytes_to_read) {
60 request->Read(bytes_to_read);
240 ACTION_P4(ManagerRead, loop, mgr, request_id, bytes_to_read) {
243 base::Unretained(mgr), request_id, 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 1435 milliseconds

12 3 4