/external/chromium_org/content/browser/loader/ |
layered_resource_handler.h | 38 virtual bool OnWillRead(int request_id,
|
layered_resource_handler.cc | 59 bool LayeredResourceHandler::OnWillRead(int request_id, 64 return next_handler_->OnWillRead(request_id, buf, buf_size, min_size);
|
async_resource_handler.h | 52 virtual bool OnWillRead(int request_id,
|
buffered_resource_handler.h | 39 virtual bool OnWillRead(int request_id,
|
certificate_resource_handler.h | 58 virtual bool OnWillRead(int request_id,
|
detachable_resource_handler.h | 61 virtual bool OnWillRead(int request_id,
|
redirect_to_file_resource_handler.h | 46 virtual bool OnWillRead(int request_id, 86 // OnWillRead() call. We exponentially grow the size of the buffer allocated 87 // when our owner fills our buffers. On the first OnWillRead() call, we
|
resource_handler.h | 83 virtual bool OnWillRead(int request_id, 89 // OnWillRead. A return value of false cancels the request, true continues
|
stream_resource_handler.h | 53 virtual bool OnWillRead(int request_id,
|
sync_resource_handler.h | 49 virtual bool OnWillRead(int request_id,
|
detachable_resource_handler.cc | 57 // A OnWillRead / OnReadCompleted pair may still be in progress, but 58 // OnWillRead passes back a scoped_refptr, so downstream handler's buffer will 136 bool DetachableResourceHandler::OnWillRead(int request_id, 149 return next_handler_->OnWillRead(request_id, buf, buf_size, min_size);
|
buffered_resource_handler.cc | 149 bool BufferedResourceHandler::OnWillRead(int request_id, 154 return next_handler_->OnWillRead(request_id, buf, buf_size, min_size); 163 if (!next_handler_->OnWillRead(request_id, buf, buf_size, min_size)) 463 if (!next_handler_->OnWillRead(request_id, &buf, &buf_len, bytes_read_))
|
stream_resource_handler.cc | 60 bool StreamResourceHandler::OnWillRead(int request_id, 85 // to it. A new one will be allocated in OnWillRead().
|
/external/chromium/chrome/browser/renderer_host/ |
download_throttling_resource_handler.cc | 96 bool DownloadThrottlingResourceHandler::OnWillRead(int request_id, 102 return download_handler_->OnWillRead(request_id, buf, buf_size, min_size); 202 if (download_handler_->OnWillRead(request_id_, &buffer, &buf_size,
|
download_resource_handler.h | 52 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
|
download_throttling_resource_handler.h | 50 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
|
offline_resource_handler.h | 40 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
|
save_file_resource_handler.h | 40 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
|
offline_resource_handler.cc | 123 bool OfflineResourceHandler::OnWillRead(int request_id, net::IOBuffer** buf, 125 return next_handler_->OnWillRead(request_id, buf, buf_size, min_size);
|
safe_browsing_resource_handler.h | 58 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
|
save_file_resource_handler.cc | 69 bool SaveFileResourceHandler::OnWillRead(int request_id, net::IOBuffer** buf,
|
/external/chromium_org/content/browser/download/ |
save_file_resource_handler.h | 50 virtual bool OnWillRead(int request_id,
|
download_resource_handler.h | 69 virtual bool OnWillRead(int request_id,
|
/external/chromium/chrome/browser/prerender/ |
prerender_resource_handler.cc | 163 bool PrerenderResourceHandler::OnWillRead(int request_id, 167 return next_handler_->OnWillRead(request_id, buf, buf_size, min_size);
|
prerender_resource_handler.h | 58 virtual bool OnWillRead(int request_id,
|