HomeSort by relevance Sort by last modified time
    Searched defs:hasPendingActivity (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/dom/
ActiveDOMObject.cpp 54 bool ActiveDOMObject::hasPendingActivity() const
MessagePort.cpp 191 bool MessagePort::hasPendingActivity()
195 return m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity();
  /external/webkit/Source/WebCore/page/
SuspendableTimer.cpp 49 bool SuspendableTimer::hasPendingActivity() const
  /external/webkit/Source/WebCore/platform/
AsyncFileSystem.h 60 virtual bool hasPendingActivity() { return false; }
  /external/webkit/Source/WebCore/workers/
Worker.cpp 124 bool Worker::hasPendingActivity() const
126 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity();
WorkerMessagingProxy.cpp 68 context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity());
187 static PassOwnPtr<WorkerThreadActivityReportTask> create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity)
189 return new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity);
193 WorkerThreadActivityReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity)
196 , m_hasPendingActivity(hasPendingActivity)
354 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity)
356 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity));
360 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity)
362 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity));
366 void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity)
    [all...]
WorkerContext.cpp 188 bool WorkerContext::hasPendingActivity() const
193 if (iter->first->hasPendingActivity())
200 if ((*iter)->hasPendingActivity() || ((*iter)->isEntangled() && !(*iter)->locallyEntangledPort()))
  /external/webkit/Source/WebCore/fileapi/
FileWriter.cpp 62 bool FileWriter::hasPendingActivity() const
64 return m_readyState == WRITING || ActiveDOMObject::hasPendingActivity();
DOMFileSystem.cpp 69 bool DOMFileSystem::hasPendingActivity() const
71 return m_asyncFileSystem->hasPendingActivity();
FileReader.cpp 63 bool FileReader::hasPendingActivity() const
65 return (m_state != None && m_state != Completed) || ActiveDOMObject::hasPendingActivity();
  /external/webkit/Source/WebCore/dom/default/
PlatformMessagePortChannel.cpp 91 bool MessagePortChannel::hasPendingActivity()
93 return m_channel->hasPendingActivity();
225 bool PlatformMessagePortChannel::hasPendingActivity()
  /external/webkit/Source/WebCore/storage/
IDBDatabase.cpp 168 bool IDBDatabase::hasPendingActivity() const
175 return !m_stopped || ActiveDOMObject::hasPendingActivity();
IDBTransaction.cpp 133 bool IDBTransaction::hasPendingActivity() const
138 return !m_finished || ActiveDOMObject::hasPendingActivity();
IDBRequest.cpp 241 bool IDBRequest::hasPendingActivity() const
246 return !m_finished || ActiveDOMObject::hasPendingActivity();
  /external/webkit/Source/WebKit/chromium/src/
PlatformMessagePortChannel.cpp 98 bool MessagePortChannel::hasPendingActivity()
100 return m_channel->hasPendingActivity();
236 bool PlatformMessagePortChannel::hasPendingActivity()
WebWorkerClientImpl.cpp 190 bool WebWorkerClientImpl::hasPendingActivity() const
291 void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity)
300 void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity)
305 hasPendingActivity));
411 bool hasPendingActivity)
413 thisPtr->m_workerContextHadPendingActivity = hasPendingActivity;
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp     [all...]

Completed in 316 milliseconds