Searched defs:cancel (Results 51 - 75 of 93) sorted by relevance

1234

/external/webkit/Source/WebCore/loader/
H A DWorkerThreadableLoader.cpp83 loader->cancel();
86 void WorkerThreadableLoader::cancel() function in class:WebCore::WorkerThreadableLoader
88 m_bridge.cancel();
142 thisPtr->m_mainThreadLoader->cancel();
146 void WorkerThreadableLoader::MainThreadBridge::cancel() function in class:WebCore::WorkerThreadableLoader::MainThreadBridge
H A DNavigationScheduler.cpp377 cancel();
409 cancel();
433 void NavigationScheduler::cancel(bool newLoadInProgress) function in class:WebCore::NavigationScheduler
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleCurl.cpp95 cancel();
112 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle
114 ResourceHandleManager::sharedInstance()->cancel(this);
170 // Restarting the handle has failed so just cancel it.
171 cancel();
H A DResourceHandleManager.cpp318 // Something went wrong so cancel the job.
320 job->cancel();
625 job->cancel();
742 void ResourceHandleManager::cancel(ResourceHandle* job) function in class:WebCore::ResourceHandleManager
/external/webkit/Source/WebKit/chromium/src/
H A DAssociatedURLLoader.cpp222 void AssociatedURLLoader::cancel() function in class:WebKit::AssociatedURLLoader
226 m_loader->cancel();
H A DResourceHandle.cpp66 void cancel();
115 void ResourceHandleInternal::cancel() function in class:WebCore::ResourceHandleInternal
118 m_loader->cancel();
261 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle
263 d->cancel();
H A DWebWorkerBase.cpp76 void cancel() function in class:WebKit::__anon14776::AllowDatabaseMainThreadBridge
232 bridge->cancel();
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.cpp85 NotificationPresenterClientQt::notificationPresenter()->cancel(this);
145 NotificationPresenterClientQt::notificationPresenter()->cancel(this);
240 void NotificationPresenterClientQt::cancel(Notification* notification) function in class:WebCore::NotificationPresenterClientQt
256 void NotificationPresenterClientQt::cancel(NotificationWrapper* wrapper) function in class:WebCore::NotificationPresenterClientQt
260 cancel(notification);
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
H A DDownloadCFNet.cpp103 void Download::cancel() function in class:WebKit::Download
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapePluginStream.cpp125 cancel();
161 // We failed to start the stream, cancel the load and destroy it.
162 cancel();
172 cancel();
224 cancel();
335 void NetscapePluginStream::cancel() function in class:WebKit::NetscapePluginStream
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dmanager_worker_broker_unittest.py90 def cancel(self): member in class:_TestWorker
175 worker.cancel()
282 self.assertRaises(NotImplementedError, obj.cancel)
/external/chromium/chrome/browser/extensions/
H A Dextension_webrequest_api.cc132 bool cancel,
136 cancel, new_url);
428 bool cancel,
441 DecrementBlockCount(request_id, cancel, new_url);
538 bool cancel,
549 if (num_handlers_blocking == 0 || cancel || !new_url.is_empty()) {
558 blocked_request.callback->Run(cancel ? net::ERR_EMPTY_RESPONSE : net::OK);
611 bool cancel = false; local
617 if (value->HasKey("cancel"))
618 EXTENSION_FUNCTION_VALIDATE(value->GetBoolean("cancel",
126 EventHandledOnIOThread( ProfileId profile_id, const std::string& extension_id, const std::string& event_name, const std::string& sub_event_name, uint64 request_id, bool cancel, const GURL& new_url) argument
422 OnEventHandled( ProfileId profile_id, const std::string& extension_id, const std::string& event_name, const std::string& sub_event_name, uint64 request_id, bool cancel, const GURL& new_url) argument
537 DecrementBlockCount(uint64 request_id, bool cancel, const GURL& new_url) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DEvent.h164 void setCancelBubble(bool cancel) { m_cancelBubble = cancel; } argument
/external/webkit/Source/WebCore/platform/network/
H A DBlobResourceHandle.cpp173 void BlobResourceHandle::cancel() function in class:WebCore::BlobResourceHandle
184 ResourceHandle::cancel();
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceHandleWin.cpp404 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebRequest.cpp259 void WebRequest::cancel() function in class:android::WebRequest
380 // If the delegate does not cancel the request and |*defer_redirect| is
382 // changed to the new URL. Otherwise if the delegate does not cancel the
405 // or request->CancelAuth() to cancel the login and display the error page.
423 // the user the options to proceed, cancel, or view certificates.
H A DWebUrlLoaderClient.cpp207 cancel();
255 cancel();
264 void WebUrlLoaderClient::cancel() function in class:android::WebUrlLoaderClient
273 thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(m_request.get(), &WebRequest::cancel));
447 cancel();
/external/webkit/Source/WebKit/win/
H A DWebDownloadCFNet.cpp223 HRESULT STDMETHODCALLTYPE WebDownload::cancel() function in class:WebDownload
/external/chromium/webkit/glue/
H A Dweburlloader_impl.cc720 cancel();
759 void WebURLLoaderImpl::cancel() { function in class:webkit_glue::WebURLLoaderImpl
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceHandleSoup.cpp662 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle
797 // didReceiveData may cancel the load, which may release the last reference.
/external/chromium/net/http/
H A Dhttp_cache.cc829 bool cancel) {
831 // the writer, there is nothing to cancel.
840 if (cancel) {
1058 // to happen the action (to cancel B) has to be synchronous to the
828 DoneWithEntry(ActiveEntry* entry, Transaction* trans, bool cancel) argument
/external/qemu/
H A Dblock_int.h44 void (*cancel)(BlockDriverAIOCB *acb); member in struct:AIOPool
/external/qemu/hw/
H A Dusb.h215 static inline void usb_defer_packet(USBPacket *p, USBCallback *cancel, argument
218 p->cancel_cb = cancel;
/external/webkit/Source/WebCore/inspector/front-end/
H A Dinspector.js904 function cancel() function
912 cancel: cancel,
1458 // context: Object - an arbitrary context object to be passed to the commit and cancel handlers
1460 // cancelHandler: Function - handles editing "cancel" outcome
1538 return "cancel";
1549 } else if (result === "cancel") {
1580 cancel: editingCancelled.bind(element),
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceHandleCFNet.cpp460 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle

Completed in 540 milliseconds

1234