Home
last modified time | relevance | path

Searched refs:hasPendingActivity (Results 1 – 25 of 52) sorted by relevance

123

/external/webkit/Source/WebCore/workers/
DWorkerMessagingProxy.cpp68 …ntext->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity()); in performTask()
187 …Task> create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) in create() argument
189 … return new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity); in create()
193 …tyReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) in WorkerThreadActivityReportTask() argument
196 , m_hasPendingActivity(hasPendingActivity) in WorkerThreadActivityReportTask()
354 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) in confirmMessageFromWorkerObject() argument
356 …ExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity)); in confirmMessageFromWorkerObject()
360 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity) in reportPendingActivity() argument
362 …xecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity)); in reportPendingActivity()
366 …orkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity) in reportPendingActivityInternal() argument
[all …]
DWorkerMessagingProxy.h59 virtual bool hasPendingActivity() const;
67 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity);
68 virtual void reportPendingActivity(bool hasPendingActivity);
92 void reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity);
DWorkerObjectProxy.h49 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
50 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
DWorker.cpp124 bool Worker::hasPendingActivity() const in hasPendingActivity() function in WebCore::Worker
126 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity(); in hasPendingActivity()
DWorkerContextProxy.h58 virtual bool hasPendingActivity() const = 0;
DDedicatedWorkerThread.cpp65 m_workerObjectProxy.reportPendingActivity(workerContext()->hasPendingActivity()); in runEventLoop()
DWorker.h70 virtual bool hasPendingActivity() const;
/external/webkit/Source/WebKit/chromium/src/
DWebWorkerBase.cpp335 void WebWorkerBase::confirmMessageFromWorkerObject(bool hasPendingActivity) in confirmMessageFromWorkerObject() argument
338 hasPendingActivity)); in confirmMessageFromWorkerObject()
343 bool hasPendingActivity) in confirmMessageTask() argument
347 thisPtr->client()->confirmMessageFromWorkerObject(hasPendingActivity); in confirmMessageTask()
350 void WebWorkerBase::reportPendingActivity(bool hasPendingActivity) in reportPendingActivity() argument
353 this, hasPendingActivity)); in reportPendingActivity()
358 bool hasPendingActivity) in reportPendingActivityTask() argument
362 thisPtr->client()->reportPendingActivity(hasPendingActivity); in reportPendingActivityTask()
DWebWorkerClientImpl.cpp190 bool WebWorkerClientImpl::hasPendingActivity() const in hasPendingActivity() function in WebKit::WebWorkerClientImpl
291 void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity) in confirmMessageFromWorkerObject() argument
300 void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity) in reportPendingActivity() argument
305 hasPendingActivity)); in reportPendingActivity()
411 bool hasPendingActivity) in reportPendingActivityTask() argument
413 thisPtr->m_workerContextHadPendingActivity = hasPendingActivity; in reportPendingActivityTask()
DPlatformMessagePortChannel.cpp98 bool MessagePortChannel::hasPendingActivity() in hasPendingActivity() function in WebCore::MessagePortChannel
100 return m_channel->hasPendingActivity(); in hasPendingActivity()
236 bool PlatformMessagePortChannel::hasPendingActivity() in hasPendingActivity() function in WebCore::PlatformMessagePortChannel
DWebWorkerClientImpl.h73 virtual bool hasPendingActivity() const;
147 bool hasPendingActivity);
DWebWorkerBase.h142 bool hasPendingActivity);
146 bool hasPendingActivity);
/external/webkit/Source/WebKit/chromium/public/
DWebWorkerClient.h52 virtual void confirmMessageFromWorkerObject(bool hasPendingActivity) = 0;
53 virtual void reportPendingActivity(bool hasPendingActivity) = 0;
/external/webkit/Source/WebCore/dom/default/
DPlatformMessagePortChannel.cpp91 bool MessagePortChannel::hasPendingActivity() in hasPendingActivity() function in WebCore::MessagePortChannel
93 return m_channel->hasPendingActivity(); in hasPendingActivity()
225 bool PlatformMessagePortChannel::hasPendingActivity() in hasPendingActivity() function in WebCore::PlatformMessagePortChannel
/external/webkit/Source/WebCore/fileapi/
DDOMFileSystem.cpp69 bool DOMFileSystem::hasPendingActivity() const in hasPendingActivity() function in WebCore::DOMFileSystem
71 return m_asyncFileSystem->hasPendingActivity(); in hasPendingActivity()
DFileWriter.cpp62 bool FileWriter::hasPendingActivity() const in hasPendingActivity() function in WebCore::FileWriter
64 return m_readyState == WRITING || ActiveDOMObject::hasPendingActivity(); in hasPendingActivity()
DFileReader.cpp63 bool FileReader::hasPendingActivity() const in hasPendingActivity() function in WebCore::FileReader
65 return (m_state != None && m_state != Completed) || ActiveDOMObject::hasPendingActivity(); in hasPendingActivity()
/external/webkit/Source/WebCore/storage/
DIDBTransaction.cpp133 bool IDBTransaction::hasPendingActivity() const in hasPendingActivity() function in WebCore::IDBTransaction
138 return !m_finished || ActiveDOMObject::hasPendingActivity(); in hasPendingActivity()
DIDBDatabase.cpp168 bool IDBDatabase::hasPendingActivity() const in hasPendingActivity() function in WebCore::IDBDatabase
175 return !m_stopped || ActiveDOMObject::hasPendingActivity(); in hasPendingActivity()
/external/webkit/Source/WebCore/bindings/v8/
DV8GCController.cpp161 if (port1->isEntangled() || port1->hasPendingActivity()) in visitDOMWrapper()
165 if (activeDOMObject && activeDOMObject->hasPendingActivity()) in visitDOMWrapper()
464 if ((!wrapper.IsWeak() && !wrapper.IsNearDeath()) || port1->hasPendingActivity()) in visitDOMWrapper()
468 if (activeDOMObject && activeDOMObject->hasPendingActivity()) { in visitDOMWrapper()
/external/webkit/Source/WebCore/page/
DSuspendableTimer.h41 virtual bool hasPendingActivity() const;
DSuspendableTimer.cpp49 bool SuspendableTimer::hasPendingActivity() const in hasPendingActivity() function in WebCore::SuspendableTimer
/external/webkit/Source/WebCore/dom/
DActiveDOMObject.cpp54 bool ActiveDOMObject::hasPendingActivity() const in hasPendingActivity() function in WebCore::ActiveDOMObject
DMessagePort.cpp191 bool MessagePort::hasPendingActivity() in hasPendingActivity() function in WebCore::MessagePort
195 return m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity(); in hasPendingActivity()
DActiveDOMObject.h41 virtual bool hasPendingActivity() const;

123