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

  /external/webkit/WebCore/dom/
ActiveDOMObject.cpp 60 bool ActiveDOMObject::hasPendingActivity() const
MessagePort.cpp 182 bool MessagePort::hasPendingActivity()
186 return m_started && m_entangledChannel && m_entangledChannel->hasPendingActivity();
  /external/webkit/WebCore/workers/
Worker.cpp 111 bool Worker::hasPendingActivity() const
113 return m_contextProxy->hasPendingActivity() || ActiveDOMObject::hasPendingActivity();
WorkerContext.cpp 135 bool WorkerContext::hasPendingActivity() const
140 if (iter->first->hasPendingActivity())
147 if ((*iter)->hasPendingActivity() || ((*iter)->isEntangled() && !(*iter)->locallyEntangledPort()))
WorkerMessagingProxy.cpp 67 context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity());
186 static PassOwnPtr<WorkerThreadActivityReportTask> create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity)
188 return new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity);
192 WorkerThreadActivityReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity)
195 , m_hasPendingActivity(hasPendingActivity)
353 void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity)
355 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity));
359 void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity)
361 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity));
365 void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity)
    [all...]
  /external/webkit/WebCore/dom/default/
PlatformMessagePortChannel.cpp 91 bool MessagePortChannel::hasPendingActivity()
93 return m_channel->hasPendingActivity();
225 bool PlatformMessagePortChannel::hasPendingActivity()
  /external/webkit/WebCore/page/
DOMTimer.cpp 158 bool DOMTimer::hasPendingActivity() const
  /external/webkit/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
284 void WebWorkerClientImpl::confirmMessageFromWorkerObject(bool hasPendingActivity)
293 void WebWorkerClientImpl::reportPendingActivity(bool hasPendingActivity)
298 hasPendingActivity));
409 bool hasPendingActivity)
411 thisPtr->m_workerContextHadPendingActivity = hasPendingActivity;

Completed in 704 milliseconds