Searched refs:bytes_read (Results 151 - 175 of 426) sorted by relevance

1234567891011>>

/external/chromium_org/net/spdy/
H A Dspdy_framer.cc535 size_t bytes_read = ProcessCommonHeader(data, len); local
536 len -= bytes_read;
537 data += bytes_read;
555 int bytes_read = ProcessControlFrameBeforeHeaderBlock(data, len); local
556 len -= bytes_read;
557 data += bytes_read;
562 int bytes_read = ProcessSettingsFramePayload(data, len); local
563 len -= bytes_read;
564 data += bytes_read;
569 int bytes_read local
577 size_t bytes_read = ProcessRstStreamFramePayload(data, len); local
584 size_t bytes_read = ProcessGoAwayFramePayload(data, len); local
591 size_t bytes_read = ProcessAltSvcFramePayload(data, len); local
598 size_t bytes_read = ProcessControlFramePayload(data, len); local
605 size_t bytes_read = ProcessFramePaddingLength(data, len); local
612 size_t bytes_read = ProcessFramePadding(data, len); local
619 size_t bytes_read = ProcessIgnoredControlFramePayload(/*data,*/ len); local
626 size_t bytes_read = ProcessDataFramePayload(data, len); local
1372 size_t bytes_read = UpdateCurrentFrameBuffer(&data, &len, local
1793 size_t bytes_read = UpdateCurrentFrameBuffer(&data, &len, local
[all...]
/external/chromium_org/base/files/
H A Dfile_proxy.h52 int bytes_read)> ReadCallback;
/external/chromium_org/base/process/
H A Dlaunch_win.cc355 DWORD bytes_read = 0; local
356 BOOL success = ReadFile(out_read, buffer, kBufferSize, &bytes_read, NULL);
357 if (!success || bytes_read == 0)
359 output->append(buffer, bytes_read);
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmtp_file_stream_reader.cc179 int bytes_read) {
187 DCHECK_GE(bytes_read, 0);
188 current_offset_ += bytes_read;
189 callback.Run(bytes_read);
177 FinishRead(const net::CompletionCallback& callback, const base::File::Info& file_info, int bytes_read) argument
H A Dmtp_file_stream_reader.h50 const base::File::Info& file_info, int bytes_read);
/external/chromium_org/content/browser/download/
H A Dsave_file_resource_handler.h57 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
/external/chromium_org/content/browser/loader/
H A Dasync_resource_handler.h50 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
H A Dcertificate_resource_handler.h59 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
H A Dcross_site_resource_handler.h39 virtual bool OnReadCompleted(int bytes_read,
H A Dlayered_resource_handler.h39 virtual bool OnReadCompleted(int bytes_read,
H A Dredirect_to_file_resource_handler.h65 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
H A Dresource_handler.h94 // Data (*bytes_read bytes) was written into the buffer provided by
98 // |bytes_read| signals that no further data is available.
99 virtual bool OnReadCompleted(int bytes_read, bool* defer) = 0;
H A Dstream_resource_handler.h54 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
H A Dsync_resource_handler.h47 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_read_from_cache_job.h49 int *bytes_read) OVERRIDE;
/external/chromium_org/content/browser/streams/
H A Dstream_url_request_job.h34 int* bytes_read) OVERRIDE;
/external/chromium_org/content/test/net/
H A Durl_request_slow_download_job.cc127 // * Otherwise, return *bytes_read = 0 to indicate end of request.
169 int* bytes_read) {
175 *bytes_read = 0;
181 ReadStatus status = FillBufferHelper(buf, buf_size, bytes_read);
196 *bytes_read = 0;
168 ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) argument
H A Durl_request_slow_download_job.h43 int *bytes_read) OVERRIDE;
/external/chromium_org/device/hid/
H A Dhid_connection_linux.cc161 ssize_t bytes_read = HANDLE_EINTR( local
163 if (bytes_read < 0) {
173 bytes_read++;
176 ProcessInputReport(buffer, bytes_read);
/external/chromium_org/device/serial/
H A Ddata_receiver.h56 // receive buffer, having read |bytes_read| bytes from it.
57 void Done(uint32_t bytes_read);
/external/chromium_org/extensions/browser/api/sockets_tcp/
H A Dtcp_socket_event_dispatcher.h74 int bytes_read,
/external/chromium_org/extensions/browser/api/sockets_udp/
H A Dudp_socket_event_dispatcher.h71 int bytes_read,
/external/chromium_org/ipc/
H A Dipc_channel_nacl.h64 int* bytes_read) OVERRIDE;
/external/chromium_org/mojo/services/network/
H A Durl_loader_impl.h44 virtual void OnReadCompleted(net::URLRequest* url_request, int bytes_read)
/external/chromium_org/net/base/
H A Dsdch_dictionary_fetcher.h52 virtual void OnReadCompleted(URLRequest* request, int bytes_read) OVERRIDE;

Completed in 4052 milliseconds

1234567891011>>