OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hasPendingActivity
(Results
1 - 25
of
45
) sorted by null
1
2
/external/webkit/Source/WebKit/chromium/public/
WebWorkerClient.h
52
virtual void confirmMessageFromWorkerObject(bool
hasPendingActivity
) = 0;
53
virtual void reportPendingActivity(bool
hasPendingActivity
) = 0;
/external/webkit/Source/WebCore/workers/
WorkerObjectProxy.h
49
virtual void confirmMessageFromWorkerObject(bool
hasPendingActivity
) = 0;
50
virtual void reportPendingActivity(bool
hasPendingActivity
) = 0;
WorkerMessagingProxy.h
59
virtual bool
hasPendingActivity
() const;
67
virtual void confirmMessageFromWorkerObject(bool
hasPendingActivity
);
68
virtual void reportPendingActivity(bool
hasPendingActivity
);
92
void reportPendingActivityInternal(bool confirmingMessage, bool
hasPendingActivity
);
WorkerContextProxy.h
58
virtual bool
hasPendingActivity
() const = 0;
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
...]
Worker.cpp
124
bool Worker::
hasPendingActivity
() const
126
return m_contextProxy->
hasPendingActivity
() || ActiveDOMObject::
hasPendingActivity
();
DedicatedWorkerThread.cpp
65
m_workerObjectProxy.reportPendingActivity(workerContext()->
hasPendingActivity
());
Worker.h
70
virtual bool
hasPendingActivity
() const;
DedicatedWorkerContext.cpp
75
thread()->workerObjectProxy().reportPendingActivity(
hasPendingActivity
());
/external/webkit/Source/WebCore/page/
SuspendableTimer.h
41
virtual bool
hasPendingActivity
() const;
SuspendableTimer.cpp
49
bool SuspendableTimer::
hasPendingActivity
() const
/external/webkit/Source/WebCore/dom/
ActiveDOMObject.cpp
54
bool ActiveDOMObject::
hasPendingActivity
() const
ActiveDOMObject.h
41
virtual bool
hasPendingActivity
() const;
MessagePortChannel.h
80
bool
hasPendingActivity
();
/external/webkit/Source/WebKit/chromium/src/
PlatformMessagePortChannel.h
63
bool
hasPendingActivity
();
WebWorkerBase.cpp
335
void WebWorkerBase::confirmMessageFromWorkerObject(bool
hasPendingActivity
)
338
hasPendingActivity
));
343
bool
hasPendingActivity
)
347
thisPtr->client()->confirmMessageFromWorkerObject(
hasPendingActivity
);
350
void WebWorkerBase::reportPendingActivity(bool
hasPendingActivity
)
353
this,
hasPendingActivity
));
358
bool
hasPendingActivity
)
362
thisPtr->client()->reportPendingActivity(
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
;
WebWorkerBase.h
142
bool
hasPendingActivity
);
146
bool
hasPendingActivity
);
WebWorkerClientImpl.h
73
virtual bool
hasPendingActivity
() const;
147
bool
hasPendingActivity
);
/external/webkit/Source/WebCore/dom/default/
PlatformMessagePortChannel.cpp
91
bool MessagePortChannel::
hasPendingActivity
()
93
return m_channel->
hasPendingActivity
();
225
bool PlatformMessagePortChannel::
hasPendingActivity
()
PlatformMessagePortChannel.h
58
bool
hasPendingActivity
();
/external/webkit/Source/WebCore/fileapi/
DOMFileSystem.cpp
69
bool DOMFileSystem::
hasPendingActivity
() const
71
return m_asyncFileSystem->
hasPendingActivity
();
FileWriter.h
73
virtual bool
hasPendingActivity
() const;
/external/webkit/Source/WebCore/platform/
AsyncFileSystem.h
60
virtual bool
hasPendingActivity
() { return false; }
/external/webkit/Source/WebCore/storage/
IDBTransaction.h
83
virtual bool
hasPendingActivity
() const;
Completed in 971 milliseconds
1
2