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

1 2

  /external/chromium_org/content/public/browser/
resource_controller.h 15 // default, load is cancelled with ERR_ABORTED code. CancelWithError can be used
21 virtual void CancelWithError(int error_code) = 0;
  /external/chromium_org/content/browser/loader/
throttling_resource_handler.h 46 virtual void CancelWithError(int error_code) OVERRIDE;
buffered_resource_handler.h 50 virtual void CancelWithError(int error_code) OVERRIDE;
detachable_resource_handler.h 72 virtual void CancelWithError(int error_code) OVERRIDE;
detachable_resource_handler.cc 213 void DetachableResourceHandler::CancelWithError(int error_code) {
214 controller()->CancelWithError(error_code);
throttling_resource_handler.cc 141 void ThrottlingResourceHandler::CancelWithError(int error_code) {
143 controller()->CancelWithError(error_code);
resource_loader.h 85 virtual void CancelWithError(int error_code) OVERRIDE;
redirect_to_file_resource_handler.cc 248 controller()->CancelWithError(net::FileErrorToNetError(error_code));
288 controller()->CancelWithError(net::ERR_FAILED);
buffered_resource_handler.cc 226 void BufferedResourceHandler::CancelWithError(int error_code) {
227 controller()->CancelWithError(error_code);
370 request()->CancelWithError(net::ERR_INVALID_RESPONSE);
resource_loader.cc 134 void ResourceLoader::CancelWithError(int error_code) {
402 request_->CancelWithError(error);
501 request_->CancelWithError(error);
async_resource_handler.cc 387 controller()->CancelWithError(net::ERR_INSUFFICIENT_RESOURCES);
  /external/chromium_org/content/browser/renderer_host/
socket_stream_host.h 56 // Following CancelWithError, CancelWithSSLError, and ContinueDespiteError
58 // CancelWithError Cancels the connection because of an error.
60 void CancelWithError(int error);
socket_stream_host.cc 86 void SocketStreamHost::CancelWithError(int error) {
87 VLOG(1) << "SocketStreamHost::CancelWithError: error=" << error;
90 job_->CancelWithError(error);
socket_stream_dispatcher_host.cc 202 socket_stream_host->CancelWithError(error);
  /external/chromium_org/net/socket_stream/
socket_stream_job.cc 69 void SocketStreamJob::CancelWithError(int error) {
70 socket_->CancelWithError(error);
socket_stream_job.h 72 virtual void CancelWithError(int error);
socket_stream.h 175 void CancelWithError(int error);
socket_stream.cc 313 void SocketStream::CancelWithError(int error) {
319 CancelWithError(MapCertStatusToNetError(ssl_info.cert_status));
    [all...]
  /external/chromium_org/net/websockets/
websocket_stream.cc 180 url_request_->CancelWithError(ERR_TIMED_OUT);
213 url_request_->CancelWithError(error);
  /external/chromium_org/chrome/browser/prerender/
prerender_tracker_unittest.cc 146 virtual void CancelWithError(int error_code) OVERRIDE { Cancel(); }
  /external/chromium_org/android_webview/browser/renderer_host/
aw_resource_dispatcher_host_delegate.cc 143 controller()->CancelWithError(net::ERR_ACCESS_DENIED);
  /external/chromium_org/chrome/browser/extensions/
user_script_listener_unittest.cc 60 virtual void CancelWithError(int error_code) OVERRIDE {
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle_unittest.cc 95 virtual void CancelWithError(int error_code) OVERRIDE {
  /external/chromium_org/net/url_request/
url_request.h 573 void CancelWithError(int error);
    [all...]
url_fetcher_core.cc 640 request_->CancelWithError(error);
645 // Normally, calling URLRequest::CancelWithError() results in calling

Completed in 854 milliseconds

1 2