Searched defs:thisPtr (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerImpl.cpp80 WebWorkerImpl* thisPtr,
94 thisPtr->confirmMessageFromWorkerObject(workerContext->hasPendingActivity());
79 postMessageToWorkerContextTask(WebCore::ScriptExecutionContext* context, WebWorkerImpl* thisPtr, const String& message, PassOwnPtr<MessagePortChannelArray> channels) argument
H A DWebWorkerClientImpl.cpp317 WebWorkerClientImpl* thisPtr,
322 thisPtr->m_webWorker->startWorkerContext(KURL(ParsedURLString, scriptURL),
327 WebWorkerClientImpl* thisPtr)
329 thisPtr->m_webWorker->terminateWorkerContext();
333 WebWorkerClientImpl* thisPtr,
344 thisPtr->m_webWorker->postMessageToWorkerContext(message, webChannels);
348 WebWorkerClientImpl* thisPtr)
350 if (thisPtr->m_worker) // Check we haven't alread called this.
351 thisPtr->m_webWorker->workerObjectDestroyed();
352 delete thisPtr;
316 startWorkerContextTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& scriptURL, const String& userAgent, const String& sourceCode) argument
326 terminateWorkerContextTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr) argument
332 postMessageToWorkerContextTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& message, PassOwnPtr<MessagePortChannelArray> channels) argument
347 workerObjectDestroyedTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr) argument
355 postMessageToWorkerObjectTask( ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& message, PassOwnPtr<MessagePortChannelArray> channels) argument
372 postExceptionToWorkerObjectTask( ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& errorMessage, int lineNumber, const String& sourceURL) argument
388 postConsoleMessageToWorkerObjectTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, int sourceId, int messageType, int messageLevel, const String& message, int lineNumber, const String& sourceURL) argument
403 confirmMessageFromWorkerObjectTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr) argument
409 reportPendingActivityTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, bool hasPendingActivity) argument
[all...]
H A DWebWorkerBase.cpp270 WebWorkerBase* thisPtr,
274 if (!thisPtr->client())
283 thisPtr->client()->postMessageToWorkerObject(message, webChannels);
296 WebWorkerBase* thisPtr,
300 if (!thisPtr->commonClient())
303 thisPtr->commonClient()->postExceptionToWorkerObject(errorMessage,
321 WebWorkerBase* thisPtr,
328 if (!thisPtr->commonClient())
330 thisPtr->commonClient()->postConsoleMessageToWorkerObject(source,
342 WebWorkerBase* thisPtr,
269 postMessageTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, String message, PassOwnPtr<MessagePortChannelArray> channels) argument
295 postExceptionTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, const String& errorMessage, int lineNumber, const String& sourceURL) argument
320 postConsoleMessageTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, int source, int type, int level, const String& message, int lineNumber, const String& sourceURL) argument
341 confirmMessageTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, bool hasPendingActivity) argument
356 reportPendingActivityTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, bool hasPendingActivity) argument
371 workerContextClosedTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr) argument
386 workerContextDestroyedTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DWorkerThreadableLoader.cpp105 void WorkerThreadableLoader::MainThreadBridge::mainThreadCreateLoader(ScriptExecutionContext* context, MainThreadBridge* thisPtr, PassOwnPtr<CrossThreadResourceRequestData> requestData, ThreadableLoaderOptions options, const String& outgoingReferrer) argument
115 thisPtr->m_mainThreadLoader = DocumentThreadableLoader::create(document, thisPtr, *request, options, outgoingReferrer);
116 ASSERT(thisPtr->m_mainThreadLoader);
119 void WorkerThreadableLoader::MainThreadBridge::mainThreadDestroy(ScriptExecutionContext* context, MainThreadBridge* thisPtr) argument
123 delete thisPtr;
135 void WorkerThreadableLoader::MainThreadBridge::mainThreadCancel(ScriptExecutionContext* context, MainThreadBridge* thisPtr) argument
140 if (!thisPtr->m_mainThreadLoader)
142 thisPtr->m_mainThreadLoader->cancel();
143 thisPtr
[all...]
/external/webkit/Source/WebCore/websockets/
H A DWorkerThreadableWebSocketChannel.cpp236 void WorkerThreadableWebSocketChannel::Bridge::setWebSocketChannel(ScriptExecutionContext* context, Bridge* thisPtr, Peer* peer, RefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper) argument
239 thisPtr->m_peer = peer;
243 void WorkerThreadableWebSocketChannel::Bridge::mainThreadCreateWebSocketChannel(ScriptExecutionContext* context, Bridge* thisPtr, RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, const String& taskMode, const KURL& url, const String& protocol) argument
248 Peer* peer = Peer::create(clientWrapper, thisPtr->m_loaderProxy, context, taskMode, url, protocol);
249 thisPtr->m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&Bridge::setWebSocketChannel, thisPtr, peer, clientWrapper), taskMode);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptDebugServer.cpp276 ScriptDebugServer* thisPtr = toScriptDebugServer(args.Data()); local
277 thisPtr->breakProgram(v8::Handle<v8::Object>::Cast(args[0]));
300 ScriptDebugServer* thisPtr = toScriptDebugServer(eventDetails.GetCallbackData()); local
301 thisPtr->handleV8DebugEvent(eventDetails);

Completed in 139 milliseconds