Home
last modified time | relevance | path

Searched refs:m_scriptExecutionContext (Results 1 – 8 of 8) sorted by relevance

/external/webkit/WebCore/dom/
DActiveDOMObject.cpp37 : m_scriptExecutionContext(scriptExecutionContext) in ActiveDOMObject()
41 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread()) in ActiveDOMObject()
42 …|| (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>( in ActiveDOMObject()
45 m_scriptExecutionContext->createdActiveDOMObject(this, upcastPointer); in ActiveDOMObject()
50 if (m_scriptExecutionContext) { in ~ActiveDOMObject()
52 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread()) in ~ActiveDOMObject()
53 …|| (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>( in ~ActiveDOMObject()
56 m_scriptExecutionContext->destroyedActiveDOMObject(this); in ~ActiveDOMObject()
67 m_scriptExecutionContext = 0; in contextDestroyed()
DMessagePort.cpp88 , m_scriptExecutionContext(scriptExecutionContext) in MessagePort()
100 if (m_scriptExecutionContext) in ~MessagePort()
101 m_scriptExecutionContext->destroyedMessagePort(this); in ~MessagePort()
131 if (!m_entangledPort || !m_scriptExecutionContext) in postMessage()
146 if (m_entangledPort->m_queueIsOpen && m_entangledPort->m_scriptExecutionContext) in postMessage()
147 m_entangledPort->m_scriptExecutionContext->processMessagePortMessagesSoon(); in postMessage()
153 if (!m_entangledPort || !m_scriptExecutionContext) in startConversation()
160 if (m_entangledPort->m_queueIsOpen && m_entangledPort->m_scriptExecutionContext) in startConversation()
161 m_entangledPort->m_scriptExecutionContext->processMessagePortMessagesSoon(); in startConversation()
167 if (m_queueIsOpen || !m_scriptExecutionContext) in start()
[all …]
DWorkerMessagingProxy.cpp191 : m_scriptExecutionContext(scriptExecutionContext) in WorkerMessagingProxy()
198 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread()) in WorkerMessagingProxy()
199 …|| (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>( in WorkerMessagingProxy()
205 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread()) in ~WorkerMessagingProxy()
206 …|| (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>( in ~WorkerMessagingProxy()
211 m_scriptExecutionContext->postTask(MessageWorkerTask::create(message, this)); in postMessageToWorkerObject()
228 m_scriptExecutionContext->postTask(task); in postTaskToParentContext()
233m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, sourceURL… in postWorkerException()
265 m_scriptExecutionContext->postTask(WorkerContextDestroyedTask::create(this)); in workerContextDestroyed()
289m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingAc… in confirmWorkerThreadMessage()
[all …]
DActiveDOMObject.h40 ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext; } in scriptExecutionContext()
74 ScriptExecutionContext* m_scriptExecutionContext;
DWorkerMessagingProxy.h80 RefPtr<ScriptExecutionContext> m_scriptExecutionContext; variable
DMessagePort.h124 ScriptExecutionContext* m_scriptExecutionContext; variable
/external/webkit/WebCore/bindings/js/
DJSMessageChannelConstructor.cpp47 , m_scriptExecutionContext(scriptExecutionContext) in JSMessageChannelConstructor()
49 if (m_scriptExecutionContext->isDocument()) in JSMessageChannelConstructor()
52 else if (m_scriptExecutionContext->isWorkerContext()) in JSMessageChannelConstructor()
DJSMessageChannelConstructor.h40 ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext; } in scriptExecutionContext()
49 ScriptExecutionContext* m_scriptExecutionContext;