Searched refs:shouldTerminate (Results 1 - 25 of 30) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
H A DTerminator.h39 bool shouldTerminate() const { return m_shouldTerminate; } function in class:JSC::Terminator
/external/webkit/Source/WebKit2/Shared/
H A DChildProcess.h69 virtual bool shouldTerminate() = 0;
H A DChildProcess.cpp72 if (!shouldTerminate())
/external/webkit/Source/WebKit2/PluginProcess/
H A DPluginProcess.h68 virtual bool shouldTerminate();
H A DPluginProcess.cpp104 bool PluginProcess::shouldTerminate() function in class:WebKit::PluginProcess
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DWebPluginSiteDataManager.h63 bool shouldTerminate(WebProcessProxy*) const;
H A DWebPluginSiteDataManager.cpp249 bool WebPluginSiteDataManager::shouldTerminate(WebProcessProxy*) const function in class:WebKit::WebPluginSiteDataManager
/external/webkit/Source/WebKit2/UIProcess/
H A DWebApplicationCacheManagerProxy.cpp55 bool WebApplicationCacheManagerProxy::shouldTerminate(WebProcessProxy*) const function in class:WebKit::WebApplicationCacheManagerProxy
H A DWebApplicationCacheManagerProxy.h68 bool shouldTerminate(WebProcessProxy*) const;
H A DWebCookieManagerProxy.h75 bool shouldTerminate(WebProcessProxy*) const;
H A DWebDatabaseManagerProxy.h81 bool shouldTerminate(WebProcessProxy*) const;
H A DWebKeyValueStorageManagerProxy.cpp55 bool WebKeyValueStorageManagerProxy::shouldTerminate(WebProcessProxy*) const function in class:WebKit::WebKeyValueStorageManagerProxy
H A DWebKeyValueStorageManagerProxy.h68 bool shouldTerminate(WebProcessProxy*) const;
H A DWebMediaCacheManagerProxy.cpp54 bool WebMediaCacheManagerProxy::shouldTerminate(WebProcessProxy*) const function in class:WebKit::WebMediaCacheManagerProxy
H A DWebMediaCacheManagerProxy.h66 bool shouldTerminate(WebProcessProxy*) const;
H A DWebResourceCacheManagerProxy.cpp59 bool WebResourceCacheManagerProxy::shouldTerminate(WebProcessProxy*) const function in class:WebKit::WebResourceCacheManagerProxy
H A DWebResourceCacheManagerProxy.h67 bool shouldTerminate(WebProcessProxy*) const;
H A DWebContext.cpp269 if (shouldTerminate(m_process.get()))
273 bool WebContext::shouldTerminate(WebProcessProxy* process) function in class:WebKit::WebContext
284 if (!m_applicationCacheManagerProxy->shouldTerminate(process))
286 if (!m_cookieManagerProxy->shouldTerminate(process))
288 if (!m_databaseManagerProxy->shouldTerminate(process))
290 if (!m_keyValueStorageManagerProxy->shouldTerminate(process))
292 if (!m_mediaCacheManagerProxy->shouldTerminate(process))
294 if (!m_pluginSiteDataManager->shouldTerminate(process))
296 if (!m_resourceCacheManagerProxy->shouldTerminate(process))
H A DWebProcessProxy.cpp407 void WebProcessProxy::shouldTerminate(bool& shouldTerminate) argument
409 if (!m_pageMap.isEmpty() || !m_context->shouldTerminate(this)) {
410 shouldTerminate = false;
414 shouldTerminate = true;
H A DWebCookieManagerProxy.cpp56 bool WebCookieManagerProxy::shouldTerminate(WebProcessProxy*) const function in class:WebKit::WebCookieManagerProxy
H A DWebProcessProxy.h121 void shouldTerminate(bool& shouldTerminate);
H A DWebContext.h169 bool shouldTerminate(WebProcessProxy*);
/external/webkit/Source/WebCore/bindings/js/
H A DJSEventListener.cpp137 if (terminatorCausedException || globalData.terminator.shouldTerminate())
H A DWorkerScriptController.cpp132 if (completionType == Terminated || m_workerContextWrapper->globalData().terminator.shouldTerminate()) {
/external/webkit/Source/WebKit2/WebProcess/
H A DWebProcess.cpp523 bool WebProcess::shouldTerminate() function in class:WebKit::WebProcess
533 bool shouldTerminate = false; local
534 if (m_connection->sendSync(Messages::WebProcessProxy::ShouldTerminate(), Messages::WebProcessProxy::ShouldTerminate::Reply(shouldTerminate), 0)
535 && !shouldTerminate)

Completed in 159 milliseconds

12