/external/chromium_org/content/child/npapi/ |
webplugin_resource_client.h | 34 virtual void DidFail(unsigned long resource_id) = 0;
|
plugin_stream_url.h | 55 virtual void DidFail(unsigned long resource_id) OVERRIDE;
|
plugin_url_fetcher.cc | 154 plugin_stream_->DidFail(resource_id_); // That will delete |this|. 176 plugin_stream_->DidFail(resource_id_); // That will delete |this|. 196 plugin_stream_->DidFail(resource_id_); // That will delete |this|. 335 plugin_stream_->DidFail(resource_id_);
|
plugin_stream_url.cc | 152 void PluginStreamUrl::DidFail(unsigned long resource_id) { 183 DidFail(id_);
|
plugin_instance.cc | 431 plugin_data_stream_->DidFail(plugin_data_stream_->ResourceId());
|
/external/chromium_org/webkit/child/ |
websocketstreamhandle_delegate.h | 34 virtual void DidFail(blink::WebSocketStreamHandle* handle,
|
websocketstreamhandle_impl.cc | 60 virtual void DidFail(WebSocketStreamHandle*, int, const string16&) OVERRIDE; 151 void WebSocketStreamHandleImpl::Context::DidFail( 155 VLOG(1) << "DidFail"; 157 client_->didFail(
|
/external/chromium_org/content/child/ |
quota_dispatcher.h | 43 virtual void DidFail(quota::QuotaStatusCode status) = 0; 81 void DidFail(int request_id,
|
quota_dispatcher.cc | 48 virtual void DidFail(quota::QuotaStatusCode error) OVERRIDE { 49 callbacks_->didFail(static_cast<WebStorageQuotaError>(error)); 73 iter.GetCurrentValue()->DidFail(quota::kQuotaErrorAbort); 104 IPC_MESSAGE_HANDLER(QuotaMsg_DidFail, DidFail); 161 void QuotaDispatcher::DidFail( 166 callback->DidFail(error);
|
websocket_bridge.h | 52 void DidFail(const std::string& message);
|
websocket_bridge.cc | 67 IPC_MESSAGE_HANDLER(WebSocketMsg_NotifyFailure, DidFail) 126 void WebSocketBridge::DidFail(const std::string& message) { 127 DVLOG(1) << "WebSocketBridge::DidFail(" << message << ")"; 134 client->didFail(this, message_to_pass);
|
socket_stream_dispatcher.cc | 171 delegate_->DidFail(handle_, error_code, ASCIIToUTF16(error_msg));
|
/external/chromium_org/content/child/fileapi/ |
webfilewriter_base.h | 32 // This calls DidSucceed() or DidFail() based on the value of |error_code|. 37 void DidFail(base::PlatformFileError error_code);
|
webfilewriter_base.cc | 70 DidFail(error_code); 120 void WebFileWriterBase::DidFail(base::PlatformFileError error_code) { 126 client_->didFail(PlatformFileErrorToWebFileError(error_code)); 150 client_->didFail(blink::WebFileErrorAbort);
|
webfilewriter_base_unittest.cc | 76 DidFail(base::PLATFORM_FILE_ERROR_NOT_FOUND); 83 DidFail(base::PLATFORM_FILE_ERROR_NOT_FOUND); // truncate completion 101 DidFail(base::PLATFORM_FILE_ERROR_NOT_FOUND); 111 DidFail(base::PLATFORM_FILE_ERROR_FAILED); // write completion 119 DidFail(base::PLATFORM_FILE_ERROR_FAILED); // cancel completion 160 virtual void didFail(blink::WebFileError error) {
|
file_system_dispatcher.cc | 90 void DidFail(base::PlatformFileError error_code) { 160 dispatcher->DidFail(base::PLATFORM_FILE_ERROR_ABORT); 424 dispatcher->DidFail(error_code);
|
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
private_api_file_system.h | 48 void DidFail(base::PlatformFileError error_code);
|
private_api_file_system.cc | 239 void FileBrowserPrivateRequestFileSystemFunction::DidFail( 306 DidFail(base::PLATFORM_FILE_ERROR_SECURITY);
|
/external/chromium_org/content/renderer/npapi/ |
webplugin_impl.cc | 135 virtual void didFail(WebURLLoader*, const WebURLError&) {} 789 clients_[i].client->DidFail(clients_[i].id); 905 client_info->client->DidFail(client_info->id); 920 client_info->client->DidFail(client_info->id); [all...] |
webplugin_delegate_proxy.cc | 176 virtual void DidFail(unsigned long resource_id) OVERRIDE { [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_file_browser_private_api.cc | 266 DidFail(base::PLATFORM_FILE_ERROR_SECURITY); 278 virtual void DidFail(base::PlatformFileError error_code) OVERRIDE { 504 virtual void DidFail(base::PlatformFileError error_code) OVERRIDE { 542 DidFail(base::PLATFORM_FILE_ERROR_SECURITY); [all...] |
/external/chromium_org/content/plugin/ |
webplugin_delegate_stub.cc | 259 client->DidFail(id);
|
/external/v8/tools/ |
test.py | 357 def DidFail(self, output): 440 execution_failed = self.test.DidFail(self.output) [all...] |