OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_executioncontext
(Results
1 - 25
of
27
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMRequestState.h
40
:
m_executionContext
(executionContext)
44
ASSERT(
m_executionContext
);
49
m_executionContext
= 0;
67
ASSERT(
m_executionContext
);
68
return toV8Context(
m_executionContext
, m_world.get());
76
bool isValid() const { return
m_executionContext
; }
79
ExecutionContext*
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLCallbackWrapper.h
47
,
m_executionContext
(m_callback ? executionContext : 0)
49
ASSERT(!m_callback || (
m_executionContext
.get() &&
m_executionContext
->isContextThread()));
64
ASSERT(!
m_executionContext
);
67
if (
m_executionContext
->isContextThread()) {
69
m_executionContext
.clear();
72
context =
m_executionContext
.release().leakRef();
81
ASSERT(!m_callback ||
m_executionContext
->isContextThread());
82
m_executionContext
.clear();
117
RefPtr<ExecutionContext>
m_executionContext
;
[
all
...]
DatabaseBase.cpp
35
:
m_executionContext
(executionContext)
37
ASSERT(
m_executionContext
->isContextThread());
42
return
m_executionContext
.get();
47
m_executionContext
->addConsoleMessage(StorageMessageSource, ErrorMessageLevel, message);
Database.cpp
109
if (!
m_executionContext
->isContextThread()) {
112
ExecutionContext* executionContext =
m_executionContext
.get();
114
executionContext->postTask(DerefContextTask::create(
m_executionContext
.release()));
135
ASSERT(
m_executionContext
->isContextThread());
208
m_executionContext
->postTask(DeliverPendingCallbackTask::create(transaction));
258
if (
m_executionContext
->isContextThread())
DatabaseBase.h
43
RefPtr<ExecutionContext>
m_executionContext
;
DatabaseSync.cpp
67
ASSERT(
m_executionContext
->isContextThread());
77
ASSERT(
m_executionContext
->isContextThread());
155
ASSERT(
m_executionContext
->isContextThread());
187
ASSERT(
m_executionContext
->isContextThread());
DatabaseBackendBase.h
124
RefPtr<DatabaseContext> m_databaseContext; // Associated with
m_executionContext
.
/external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerMessagingProxy.cpp
86
:
m_executionContext
(workerObject->executionContext())
87
, m_workerObjectProxy(WorkerObjectProxy::create(
m_executionContext
.get(), this))
97
ASSERT((
m_executionContext
->isDocument() && isMainThread())
98
|| (
m_executionContext
->isWorkerGlobalScope() && toWorkerGlobalScope(
m_executionContext
.get())->thread()->isCurrentThread()));
104
ASSERT((
m_executionContext
->isDocument() && isMainThread())
105
|| (
m_executionContext
->isWorkerGlobalScope() && toWorkerGlobalScope(
m_executionContext
.get())->thread()->isCurrentThread()));
111
ASSERT(
m_executionContext
->isDocument());
112
Document* document = toDocument(
m_executionContext
.get())
[
all
...]
WorkerObjectProxy.cpp
49
m_executionContext
->postTask(bind(&WorkerMessagingProxy::postMessageToWorkerObject, m_messagingProxy, message, channels));
54
m_executionContext
->postTask(bind(&WorkerMessagingProxy::confirmMessageFromWorkerObject, m_messagingProxy, hasPendingActivity));
59
m_executionContext
->postTask(bind(&WorkerMessagingProxy::reportPendingActivity, m_messagingProxy, hasPendingActivity));
64
m_executionContext
->postTask(bind(&WorkerMessagingProxy::reportException, m_messagingProxy, errorMessage.isolatedCopy(), lineNumber, columnNumber, sourceURL.isolatedCopy()));
69
m_executionContext
->postTask(bind(&WorkerMessagingProxy::reportConsoleMessage, m_messagingProxy, source, level, message.isolatedCopy(), lineNumber, sourceURL.isolatedCopy()));
74
m_executionContext
->postTask(bind(&WorkerMessagingProxy::postMessageToPageInspector, m_messagingProxy, message.isolatedCopy()));
84
m_executionContext
->postTask(bind(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingProxy));
90
m_executionContext
->postTask(bind(&WorkerMessagingProxy::workerGlobalScopeDestroyed, m_messagingProxy));
94
:
m_executionContext
(executionContext)
WorkerEventQueue.cpp
42
:
m_executionContext
(context)
110
m_executionContext
->postTask(task.release());
WorkerEventQueue.h
58
ExecutionContext*
m_executionContext
;
WorkerObjectProxy.h
73
ExecutionContext*
m_executionContext
;
WorkerMessagingProxy.h
89
RefPtr<ExecutionContext>
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.h
107
void clearExecutionContext() {
m_executionContext
= 0; }
126
virtual ExecutionContext* executionContext() const OVERRIDE { return
m_executionContext
; }
144
ExecutionContext*
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBufferList.cpp
41
:
m_executionContext
(context)
90
return
m_executionContext
;
WebKitSourceBufferList.cpp
41
:
m_executionContext
(context)
102
return
m_executionContext
;
SourceBufferList.h
70
ExecutionContext*
m_executionContext
;
WebKitSourceBufferList.h
69
ExecutionContext*
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/web/
ServiceWorkerGlobalScopeProxy.cpp
81
m_executionContext
.postTask(bind(&WebEmbeddedWorkerImpl::terminateWorkerContext, &m_embeddedWorker));
91
,
m_executionContext
(executionContext)
ServiceWorkerGlobalScopeProxy.h
81
WebCore::ExecutionContext&
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.cpp
73
:
m_executionContext
(context)
284
return
m_executionContext
;
292
m_executionContext
= 0;
RTCDataChannel.h
93
ExecutionContext*
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemCallbacks.cpp
144
,
m_executionContext
(context)
152
RefPtr<DOMFileSystem> fileSystem = DOMFileSystem::create(
m_executionContext
.get(), name, m_type, rootURL);
154
m_executionContext
.clear();
169
,
m_executionContext
(context)
175
RefPtr<DOMFileSystem> filesystem = DOMFileSystem::create(
m_executionContext
.get(), name, type, rootURL);
FileSystemCallbacks.h
107
RefPtr<ExecutionContext>
m_executionContext
;
119
RefPtr<ExecutionContext>
m_executionContext
;
/external/chromium_org/third_party/WebKit/Source/core/dom/
ActiveDOMObject.cpp
48
//
m_executionContext
would/should have been nullified by
Completed in 146 milliseconds
1
2