HomeSort by relevance Sort by last modified time
    Searched refs:postTask (Results 1 - 25 of 43) sorted by null

1 2

  /external/webkit/Source/WebKit/chromium/tests/
CCThreadTest.cpp 56 thread->postTask(createCCThreadTask(&target, &PingPongUsingCondition::ping, &completion));
66 CCMainThread::postTask(createMainThreadTask(this, &PingPongTestUsingTasks::pong));
84 thread->postTask(createCCThreadTask(&target, &PingPongTestUsingTasks::ping));
  /external/webkit/Source/WebCore/fileapi/
FileStreamProxy.cpp 62 proxy->fileThread()->postTask(createFileThreadTask(proxy.get(), &FileStreamProxy::startOnFileThread));
89 m_context->postTask(createCallbackTask(&didStart, this));
98 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::stopOnFileThread));
110 m_context->postTask(createCallbackTask(&derefProxyOnContext, this));
121 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::getSizeOnFileThread, path, expectedModificationTime));
127 m_context->postTask(createCallbackTask(&didGetSize, this, size));
138 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::openForReadOnFileThread, path, offset, length));
144 m_context->postTask(createCallbackTask(&didOpen, this, success));
149 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::openForWriteOnFileThread, path));
155 m_context->postTask(createCallbackTask(&didOpen, this, success))
    [all...]
LocalFileSystem.cpp 87 context->postTask(createCallbackTask(&openFileSystem, fileSystemBasePath(), context->securityOrigin()->databaseIdentifier(), type, false, callbacks));
93 context->postTask(createCallbackTask(&openFileSystem, fileSystemBasePath(), context->securityOrigin()->databaseIdentifier(), type, true, callbacks));
FileThread.h 68 void postTask(PassOwnPtr<Task> task);
FileThread.cpp 67 void FileThread::postTask(PassOwnPtr<Task> task)
FileReader.cpp 132 scriptExecutionContext()->postTask(createCallbackTask(&delayedStart, this));
153 scriptExecutionContext()->postTask(createCallbackTask(&delayedAbort, this));
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCMainThread.cpp 41 void CCMainThread::postTask(PassOwnPtr<Task> task)
CCMainThread.h 46 static void postTask(PassOwnPtr<Task>); // Executes the task on main thread asynchronously.
CCThread.h 57 void postTask(PassOwnPtr<Task>); // Executes the task on context's thread asynchronously.
CCThread.cpp 54 void CCThread::postTask(PassOwnPtr<Task> task)
  /external/webkit/Source/WebCore/bindings/js/
JSCustomVoidCallback.cpp 54 m_scriptExecutionContext->postTask(DeleteCallbackDataTask::create(m_data));
  /external/webkit/Source/WebCore/dom/
StringCallback.cpp 68 context->postTask(DispatchCallbackTask::create(this, data));
  /external/webkit/Source/WebCore/workers/
WorkerMessagingProxy.cpp 246 m_scriptExecutionContext->postTask(MessageWorkerTask::create(message, channels, this));
256 m_workerThread->runLoop().postTask(MessageWorkerContextTask::create(message, channels));
274 m_scriptExecutionContext->postTask(task);
279 m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, sourceURL, this));
291 m_scriptExecutionContext->postTask(createCallbackTask(&postConsoleMessageTask, this, source, type, level, message, lineNumber, sourceURL));
308 m_workerThread->runLoop().postTask(m_queuedEarlyTasks[i].release());
324 m_scriptExecutionContext->postTask(WorkerContextDestroyedTask::create(this));
331 m_scriptExecutionContext->postTask(WorkerTerminateTask::create(this));
356 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity));
362 m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity))
    [all...]
WorkerRunLoop.h 61 void postTask(PassOwnPtr<ScriptExecutionContext::Task>);
WorkerThread.cpp 218 workerContext->postTask(WorkerThreadShutdownFinishTask::create());
240 m_runLoop.postTask(WorkerThreadShutdownStartTask::create());
  /external/webkit/Source/WebCore/storage/chromium/
SQLTransactionClientChromium.cpp 66 database->scriptExecutionContext()->postTask(NotifyDatabaseChangedTask::create(database));
  /external/webkit/Tools/DumpRenderTree/chromium/
DRTDevToolsClient.cpp 107 postTask(new AsyncCallTask(this, args));
Task.cpp 64 void postTask(WebTask* task)
Task.h 40 // WebTask represents a task which can run by postTask() or postDelayedTask().
91 void postTask(WebTask* task);
DRTDevToolsAgent.cpp 82 postTask(new AsyncCallTask(this, args));
127 postTask(new DelayedFrontendLoadedTask(this));
  /external/webkit/Source/WebCore/storage/
SQLCallbackWrapper.h 77 context->postTask(createCallbackTask(&safeRelease, callback));
  /external/webkit/Source/WebKit/chromium/src/
WebSharedWorkerImpl.cpp 78 workerThread()->runLoop().postTask(
WebWorkerClientImpl.cpp 223 m_scriptExecutionContext->postTask(createCallbackTask(&postMessageToWorkerObjectTask,
239 m_scriptExecutionContext->postTask(createCallbackTask(&postExceptionToWorkerObjectTask,
263 m_scriptExecutionContext->postTask(createCallbackTask(&postConsoleMessageToWorkerObjectTask,
296 m_scriptExecutionContext->postTask(createCallbackTask(&confirmMessageFromWorkerObjectTask,
303 m_scriptExecutionContext->postTask(createCallbackTask(&reportPendingActivityTask,
  /external/webkit/Source/WebCore/bindings/generic/
ActiveDOMCallback.cpp 119 context->postTask(DestroyOnContextThreadTask::create(implOwnPtr.release()));
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestCallback.cpp 52 context->postTask(DeleteCallbackDataTask::create(m_data));

Completed in 529 milliseconds

1 2