Searched refs:hasPendingActivity (Results 1 - 25 of 42) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/workers/
H A DWorkerObjectProxy.h47 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
48 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
H A DWorkerMessagingProxy.h57 virtual bool hasPendingActivity() const override;
74 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) override;
75 virtual void reportPendingActivity(bool hasPendingActivity) override;
101 void reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity);
H A DWorker.cpp140 bool Worker::hasPendingActivity() const function in class:WebCore::Worker
142 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity();
H A DWorkerGlobalScopeProxy.h57 virtual bool hasPendingActivity() const = 0;
H A DWorkerMessagingProxy.cpp120 context.thread().workerObjectProxy().confirmMessageFromWorkerObject(context.hasPendingActivity());
304 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
307 reportPendingActivityInternal(true, hasPendingActivity);
312 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity) argument
315 reportPendingActivityInternal(false, hasPendingActivity);
320 void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity) argument
327 m_workerThreadHadPendingActivity = hasPendingActivity;
330 bool WorkerMessagingProxy::hasPendingActivity() const function in class:WebCore::WorkerMessagingProxy
H A DDedicatedWorkerThread.cpp64 m_workerObjectProxy.reportPendingActivity(workerGlobalScope()->hasPendingActivity());
H A DWorker.h65 virtual bool hasPendingActivity() const override;
H A DDedicatedWorkerGlobalScope.cpp83 thread().workerObjectProxy().reportPendingActivity(hasPendingActivity());
/macosx-10.10/WebCore-7600.1.25/dom/
H A DActiveDOMObject.cpp90 bool ActiveDOMObject::hasPendingActivity() const function in class:WebCore::ActiveDOMObject
H A DActiveDOMObject.h45 virtual bool hasPendingActivity() const;
H A DMessagePortChannel.h75 bool hasPendingActivity();
H A DMessagePort.cpp170 bool MessagePort::hasPendingActivity() function in class:WebCore::MessagePort
174 if (m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity())
H A DMessagePort.h84 bool hasPendingActivity();
H A DScriptExecutionContext.cpp461 bool ScriptExecutionContext::hasPendingActivity() const function in class:WebCore::ScriptExecutionContext
466 if (activeDOMObject->hasPendingActivity())
471 if (messagePort->hasPendingActivity())
/macosx-10.10/WebCore-7600.1.25/page/
H A DSuspendableTimer.h61 virtual bool hasPendingActivity() const final override;
H A DSuspendableTimer.cpp47 bool SuspendableTimer::hasPendingActivity() const function in class:WebCore::SuspendableTimer
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLImageElement.h86 bool hasPendingActivity() const { return m_imageLoader.hasPendingActivity(); } function in class:WebCore::HTMLImageElement
/macosx-10.10/WebCore-7600.1.25/loader/
H A DImageLoader.h66 bool hasPendingActivity() const { return m_hasPendingLoadEvent || m_hasPendingErrorEvent; } function in class:WebCore::ImageLoader
/macosx-10.10/WebCore-7600.1.25/Modules/encryptedmedia/
H A DMediaKeySession.h74 virtual bool hasPendingActivity() const override { return (m_keys && !isClosed()) || m_asyncEventQueue.hasPendingEvents(); }
/macosx-10.10/WebCore-7600.1.25/Modules/mediasource/
H A DMediaSource.h103 virtual bool hasPendingActivity() const override;
/macosx-10.10/WebCore-7600.1.25/Modules/speech/
H A DSpeechRecognition.cpp162 if (hasPendingActivity())
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBDatabase.h84 virtual bool hasPendingActivity() const override;
H A DIDBRequest.h98 virtual bool hasPendingActivity() const override;
H A DIDBTransaction.h115 virtual bool hasPendingActivity() const override;
/macosx-10.10/WebCore-7600.1.25/dom/default/
H A DPlatformMessagePortChannel.cpp128 bool MessagePortChannel::hasPendingActivity() function in class:WebCore::MessagePortChannel

Completed in 304 milliseconds

12