Searched defs:hasPendingActivity (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DActiveDOMObject.cpp54 bool ActiveDOMObject::hasPendingActivity() const function in class:WebCore::ActiveDOMObject
H A DMessagePort.cpp191 bool MessagePort::hasPendingActivity() function in class:WebCore::MessagePort
195 return m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity();
/external/webkit/Source/WebCore/page/
H A DSuspendableTimer.cpp49 bool SuspendableTimer::hasPendingActivity() const function in class:WebCore::SuspendableTimer
/external/webkit/Source/WebCore/platform/
H A DAsyncFileSystem.h60 virtual bool hasPendingActivity() { return false; } function in class:WebCore::AsyncFileSystem
/external/webkit/Source/WebCore/fileapi/
H A DFileWriter.cpp62 bool FileWriter::hasPendingActivity() const function in class:WebCore::FileWriter
64 return m_readyState == WRITING || ActiveDOMObject::hasPendingActivity();
H A DDOMFileSystem.cpp69 bool DOMFileSystem::hasPendingActivity() const function in class:WebCore::DOMFileSystem
71 return m_asyncFileSystem->hasPendingActivity();
H A DFileReader.cpp63 bool FileReader::hasPendingActivity() const function in class:WebCore::FileReader
65 return (m_state != None && m_state != Completed) || ActiveDOMObject::hasPendingActivity();
/external/webkit/Source/WebCore/workers/
H A DWorker.cpp124 bool Worker::hasPendingActivity() const function in class:WebCore::Worker
126 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity();
H A DWorkerMessagingProxy.cpp68 context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity());
187 static PassOwnPtr<WorkerThreadActivityReportTask> create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) argument
189 return new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity);
193 WorkerThreadActivityReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) argument
196 , m_hasPendingActivity(hasPendingActivity)
354 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
356 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity));
360 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity) argument
362 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity));
366 void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity) argument
376 bool WorkerMessagingProxy::hasPendingActivity() const function in class:WebCore::WorkerMessagingProxy
[all...]
H A DWorkerContext.cpp188 bool WorkerContext::hasPendingActivity() const function in class:WebCore::WorkerContext
193 if (iter->first->hasPendingActivity())
200 if ((*iter)->hasPendingActivity() || ((*iter)->isEntangled() && !(*iter)->locallyEntangledPort()))
/external/webkit/Source/WebCore/dom/default/
H A DPlatformMessagePortChannel.cpp91 bool MessagePortChannel::hasPendingActivity() function in class:WebCore::MessagePortChannel
93 return m_channel->hasPendingActivity();
225 bool PlatformMessagePortChannel::hasPendingActivity() function in class:WebCore::PlatformMessagePortChannel
/external/webkit/Source/WebCore/storage/
H A DIDBDatabase.cpp168 bool IDBDatabase::hasPendingActivity() const function in class:WebCore::IDBDatabase
175 return !m_stopped || ActiveDOMObject::hasPendingActivity();
H A DIDBTransaction.cpp133 bool IDBTransaction::hasPendingActivity() const function in class:WebCore::IDBTransaction
138 return !m_finished || ActiveDOMObject::hasPendingActivity();
H A DIDBRequest.cpp241 bool IDBRequest::hasPendingActivity() const function in class:WebCore::IDBRequest
246 return !m_finished || ActiveDOMObject::hasPendingActivity();
/external/webkit/Source/WebKit/chromium/src/
H A DPlatformMessagePortChannel.cpp98 bool MessagePortChannel::hasPendingActivity() function in class:WebCore::MessagePortChannel
100 return m_channel->hasPendingActivity();
236 bool PlatformMessagePortChannel::hasPendingActivity() function in class:WebCore::PlatformMessagePortChannel
H A DWebWorkerClientImpl.cpp190 bool WebWorkerClientImpl::hasPendingActivity() const function in class:WebKit::WebWorkerClientImpl
291 void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
300 void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity) argument
305 hasPendingActivity));
411 bool hasPendingActivity)
413 thisPtr->m_workerContextHadPendingActivity = hasPendingActivity;
409 reportPendingActivityTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, bool hasPendingActivity) argument
H A DWebWorkerBase.cpp335 void WebWorkerBase::confirmMessageFromWorkerObject(bool hasPendingActivity) argument
338 hasPendingActivity));
343 bool hasPendingActivity)
347 thisPtr->client()->confirmMessageFromWorkerObject(hasPendingActivity);
350 void WebWorkerBase::reportPendingActivity(bool hasPendingActivity) argument
353 this, hasPendingActivity));
358 bool hasPendingActivity)
362 thisPtr->client()->reportPendingActivity(hasPendingActivity);
341 confirmMessageTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, bool hasPendingActivity) argument
356 reportPendingActivityTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, bool hasPendingActivity) argument
/external/webkit/Source/WebCore/html/
H A DHTMLMediaElement.cpp2382 bool HTMLMediaElement::hasPendingActivity() const function in class:WebCore::HTMLMediaElement
2387 LOG(Media, "HTMLMediaElement::hasPendingActivity -> %s", boolString(pending));

Completed in 256 milliseconds