Searched refs:CancelWithError (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/content/public/browser/
H A Dresource_controller.h15 // 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/renderer_host/
H A Dsocket_stream_host.h56 // Following CancelWithError, CancelWithSSLError, and ContinueDespiteError
58 // CancelWithError Cancels the connection because of an error.
60 void CancelWithError(int error);
H A Dsocket_stream_host.cc86 void SocketStreamHost::CancelWithError(int error) { function in class:content::SocketStreamHost
87 VLOG(1) << "SocketStreamHost::CancelWithError: error=" << error;
90 job_->CancelWithError(error);
H A Dsocket_stream_dispatcher_host.cc202 socket_stream_host->CancelWithError(error);
/external/chromium_org/net/socket_stream/
H A Dsocket_stream_job.cc69 void SocketStreamJob::CancelWithError(int error) { function in class:net::SocketStreamJob
70 socket_->CancelWithError(error);
H A Dsocket_stream_job.h72 virtual void CancelWithError(int error);
H A Dsocket_stream.h175 void CancelWithError(int error);
H A Dsocket_stream.cc313 void SocketStream::CancelWithError(int error) { function in class:net::SocketStream
319 CancelWithError(MapCertStatusToNetError(ssl_info.cert_status));
/external/chromium_org/content/browser/loader/
H A Dthrottling_resource_handler.h46 virtual void CancelWithError(int error_code) OVERRIDE;
H A Ddetachable_resource_handler.cc213 void DetachableResourceHandler::CancelWithError(int error_code) { function in class:content::DetachableResourceHandler
214 controller()->CancelWithError(error_code);
H A Dthrottling_resource_handler.cc141 void ThrottlingResourceHandler::CancelWithError(int error_code) { function in class:content::ThrottlingResourceHandler
143 controller()->CancelWithError(error_code);
H A Dbuffered_resource_handler.h50 virtual void CancelWithError(int error_code) OVERRIDE;
H A Ddetachable_resource_handler.h72 virtual void CancelWithError(int error_code) OVERRIDE;
H A Dresource_loader.h85 virtual void CancelWithError(int error_code) OVERRIDE;
H A Dredirect_to_file_resource_handler.cc248 controller()->CancelWithError(net::FileErrorToNetError(error_code));
288 controller()->CancelWithError(net::ERR_FAILED);
H A Dbuffered_resource_handler.cc226 void BufferedResourceHandler::CancelWithError(int error_code) { function in class:content::BufferedResourceHandler
227 controller()->CancelWithError(error_code);
370 request()->CancelWithError(net::ERR_INVALID_RESPONSE);
H A Dresource_loader.cc134 void ResourceLoader::CancelWithError(int error_code) { function in class:content::ResourceLoader
402 request_->CancelWithError(error);
501 request_->CancelWithError(error);
H A Dasync_resource_handler.cc387 controller()->CancelWithError(net::ERR_INSUFFICIENT_RESOURCES);
/external/chromium_org/net/websockets/
H A Dwebsocket_stream.cc180 url_request_->CancelWithError(ERR_TIMED_OUT);
213 url_request_->CancelWithError(error);
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_tracker_unittest.cc146 virtual void CancelWithError(int error_code) OVERRIDE { Cancel(); }
/external/chromium_org/android_webview/browser/renderer_host/
H A Daw_resource_dispatcher_host_delegate.cc143 controller()->CancelWithError(net::ERR_ACCESS_DENIED);
/external/chromium_org/chrome/browser/extensions/
H A Duser_script_listener_unittest.cc60 virtual void CancelWithError(int error_code) OVERRIDE {
/external/chromium_org/components/navigation_interception/
H A Dintercept_navigation_resource_throttle_unittest.cc95 virtual void CancelWithError(int error_code) OVERRIDE {
/external/chromium_org/net/url_request/
H A Durl_request.h573 void CancelWithError(int error);
H A Durl_fetcher_core.cc640 request_->CancelWithError(error);
645 // Normally, calling URLRequest::CancelWithError() results in calling

Completed in 7547 milliseconds

12