/external/webkit/Source/WebKit2/UIProcess/ |
D | WebContext.cpp | 269 if (shouldTerminate(m_process.get())) in enableProcessTermination() 273 bool WebContext::shouldTerminate(WebProcessProxy* process) in shouldTerminate() function in WebKit::WebContext 284 if (!m_applicationCacheManagerProxy->shouldTerminate(process)) in shouldTerminate() 286 if (!m_cookieManagerProxy->shouldTerminate(process)) in shouldTerminate() 288 if (!m_databaseManagerProxy->shouldTerminate(process)) in shouldTerminate() 290 if (!m_keyValueStorageManagerProxy->shouldTerminate(process)) in shouldTerminate() 292 if (!m_mediaCacheManagerProxy->shouldTerminate(process)) in shouldTerminate() 294 if (!m_pluginSiteDataManager->shouldTerminate(process)) in shouldTerminate() 296 if (!m_resourceCacheManagerProxy->shouldTerminate(process)) in shouldTerminate()
|
D | WebProcessProxy.cpp | 407 void WebProcessProxy::shouldTerminate(bool& shouldTerminate) in shouldTerminate() argument 409 if (!m_pageMap.isEmpty() || !m_context->shouldTerminate(this)) { in shouldTerminate() 410 shouldTerminate = false; in shouldTerminate() 414 shouldTerminate = true; in shouldTerminate()
|
D | WebProcessProxy.h | 121 void shouldTerminate(bool& shouldTerminate);
|
D | WebResourceCacheManagerProxy.h | 67 bool shouldTerminate(WebProcessProxy*) const;
|
D | WebMediaCacheManagerProxy.h | 66 bool shouldTerminate(WebProcessProxy*) const;
|
D | WebKeyValueStorageManagerProxy.h | 68 bool shouldTerminate(WebProcessProxy*) const;
|
D | WebApplicationCacheManagerProxy.h | 68 bool shouldTerminate(WebProcessProxy*) const;
|
D | WebResourceCacheManagerProxy.cpp | 59 bool WebResourceCacheManagerProxy::shouldTerminate(WebProcessProxy*) const in shouldTerminate() function in WebKit::WebResourceCacheManagerProxy
|
D | WebCookieManagerProxy.h | 75 bool shouldTerminate(WebProcessProxy*) const;
|
D | WebKeyValueStorageManagerProxy.cpp | 55 bool WebKeyValueStorageManagerProxy::shouldTerminate(WebProcessProxy*) const in shouldTerminate() function in WebKit::WebKeyValueStorageManagerProxy
|
D | WebDatabaseManagerProxy.h | 81 bool shouldTerminate(WebProcessProxy*) const;
|
D | WebApplicationCacheManagerProxy.cpp | 55 bool WebApplicationCacheManagerProxy::shouldTerminate(WebProcessProxy*) const in shouldTerminate() function in WebKit::WebApplicationCacheManagerProxy
|
D | WebMediaCacheManagerProxy.cpp | 54 bool WebMediaCacheManagerProxy::shouldTerminate(WebProcessProxy*) const in shouldTerminate() function in WebKit::WebMediaCacheManagerProxy
|
D | WebProcessProxy.messages.in | 28 ShouldTerminate() -> (bool shouldTerminate)
|
D | WebCookieManagerProxy.cpp | 56 bool WebCookieManagerProxy::shouldTerminate(WebProcessProxy*) const in shouldTerminate() function in WebKit::WebCookieManagerProxy
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Terminator.h | 39 bool shouldTerminate() const { return m_shouldTerminate; } in shouldTerminate() function
|
/external/webkit/Source/WebKit2/Shared/ |
D | ChildProcess.h | 69 virtual bool shouldTerminate() = 0;
|
D | ChildProcess.cpp | 72 if (!shouldTerminate()) in terminationTimerFired()
|
/external/webkit/Source/WebKit2/PluginProcess/ |
D | PluginProcess.h | 68 virtual bool shouldTerminate();
|
D | PluginProcess.cpp | 104 bool PluginProcess::shouldTerminate() in shouldTerminate() function in WebKit::PluginProcess
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/ |
D | WebPluginSiteDataManager.h | 63 bool shouldTerminate(WebProcessProxy*) const;
|
/external/webkit/Source/WebKit2/WebProcess/ |
D | WebProcess.cpp | 523 bool WebProcess::shouldTerminate() in shouldTerminate() function in WebKit::WebProcess 533 bool shouldTerminate = false; in shouldTerminate() local 534 …essProxy::ShouldTerminate(), Messages::WebProcessProxy::ShouldTerminate::Reply(shouldTerminate), 0) in shouldTerminate() 535 && !shouldTerminate) in shouldTerminate()
|
D | WebProcess.h | 167 virtual bool shouldTerminate();
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSEventListener.cpp | 137 if (terminatorCausedException || globalData.terminator.shouldTerminate()) in handleEvent()
|
D | WorkerScriptController.cpp | 132 …ompletionType == Terminated || m_workerContextWrapper->globalData().terminator.shouldTerminate()) { in evaluate()
|