OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:postTask
(Results
1 - 25
of
70
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThread.h
43
void
postTask
(const Closure&);
HTMLParserThread.cpp
57
void HTMLParserThread::
postTask
(const Closure& closure)
59
m_thread->
postTask
(new Task(closure));
/external/chromium_org/third_party/WebKit/Source/core/workers/
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));
WorkerRunLoop.h
64
bool
postTask
(PassOwnPtr<ExecutionContextTask>);
65
bool
postTask
(const Closure&);
/external/chromium_org/third_party/WebKit/Source/core/testing/
UnitTestHelpers.cpp
46
blink::Platform::current()->currentThread()->
postTask
(new QuitTask);
/external/chromium_org/third_party/WebKit/public/platform/
WebThread.h
51
//
postTask
() and postDelayedTask() take ownership of the passed Task
52
// object. It is safe to invoke
postTask
() and postDelayedTask() from any
54
virtual void
postTask
(Task*) = 0;
WebWorkerRunLoop.h
45
BLINK_EXPORT bool
postTask
(Task*);
/external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuota.cpp
60
executionContext->
postTask
(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
66
executionContext->
postTask
(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
StorageInfo.cpp
60
executionContext->
postTask
(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
72
executionContext->
postTask
(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
/external/chromium_org/third_party/WebKit/Source/web/
StorageQuotaChromium.cpp
57
executionContext->
postTask
(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
66
executionContext->
postTask
(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
WebWorkerRunLoop.cpp
64
bool WebWorkerRunLoop::
postTask
(Task* task)
66
return m_workerRunLoop->
postTask
(TaskForwarder::create(adoptPtr(task)));
/external/chromium_org/webkit/child/
webthread_impl.h
40
virtual void
postTask
(Task* task);
59
virtual void
postTask
(Task* task);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebRTCPeerConnectionHandler.cpp
185
m_interfaces->delegate()->
postTask
(new RTCPeerConnectionStateTask(this, m_client, WebRTCPeerConnectionHandlerClient::ICEConnectionStateCompleted, WebRTCPeerConnectionHandlerClient::ICEGatheringStateComplete));
198
m_interfaces->delegate()->
postTask
(new RTCSessionDescriptionRequestSuccededTask(this, request, sessionDescription));
200
m_interfaces->delegate()->
postTask
(new RTCSessionDescriptionRequestFailedTask(this, request));
208
m_interfaces->delegate()->
postTask
(new RTCSessionDescriptionRequestSuccededTask(this, request, sessionDescription));
210
m_interfaces->delegate()->
postTask
(new RTCSessionDescriptionRequestFailedTask(this, request));
217
m_interfaces->delegate()->
postTask
(new RTCVoidRequestTask(this, request, true));
219
m_interfaces->delegate()->
postTask
(new RTCVoidRequestTask(this, request, false));
226
m_interfaces->delegate()->
postTask
(new RTCVoidRequestTask(this, request, true));
228
m_interfaces->delegate()->
postTask
(new RTCVoidRequestTask(this, request, false));
254
m_interfaces->delegate()->
postTask
(new RTCVoidRequestTask(this, request, true))
[
all
...]
WebUserMediaClientMock.cpp
122
m_delegate->
postTask
(new UserMediaRequestPermissionDeniedTask(this, request));
129
m_delegate->
postTask
(new UserMediaRequestConstraintFailedTask(this, request, failedConstraint));
134
m_delegate->
postTask
(new UserMediaRequestConstraintFailedTask(this, request, failedConstraint));
160
m_delegate->
postTask
(new UserMediaRequestTask(this, request, stream));
MockWebRTCDTMFSenderHandler.cpp
88
m_delegate->
postTask
(new DTMFSenderToneTask(this, m_client));
89
m_delegate->
postTask
(new DTMFSenderToneTask(this, m_client));
MockWebRTCDataChannelHandler.cpp
69
m_delegate->
postTask
(new DataChannelReadyStateTask(this, m_client, WebRTCDataChannelHandlerClient::ReadyStateOpen));
124
m_delegate->
postTask
(new DataChannelReadyStateTask(this, m_client, WebRTCDataChannelHandlerClient::ReadyStateClosed));
MockWebMIDIAccessor.cpp
81
m_interfaces->delegate()->
postTask
(new DidStartSessionTask(this, m_client, m_interfaces->testRunner()->midiAccessorResult()));
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseThread.cpp
70
m_thread->
postTask
(new Task(WTF::bind(&DatabaseThread::cleanupDatabaseThread, this)));
102
m_thread->
postTask
(new Task(WTF::bind(&DatabaseTaskSynchronizer::taskCompleted, m_cleanupSync)));
133
m_thread->
postTask
(task.leakPtr());
SQLTransactionClient.cpp
58
executionContext->
postTask
(bind(&databaseModified, PassRefPtr<DatabaseBackendBase>(database)));
/external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunner.h
53
void
postTask
(PassOwnPtr<ExecutionContextTask>); // Executes the task on context's thread asynchronously.
StringCallback.cpp
69
context->
postTask
(DispatchCallbackTask::create(callback, data));
MainThreadTaskRunnerTest.cpp
96
TEST(MainThreadTaskRunnerTest,
PostTask
)
102
runner->
postTask
(MarkingBooleanTask::create(&isMarked));
115
runner->
postTask
(MarkingBooleanTask::create(&isMarked));
133
runner->
postTask
(MarkingBooleanTask::create(&isMarked));
/external/chromium_org/third_party/WebKit/Source/web/tests/
SpinLockTest.cpp
86
thread1->
postTask
(new Task(WTF::bind(&threadMain, static_cast<char*>(sharedBuffer))));
87
thread2->
postTask
(new Task(WTF::bind(&threadMain, static_cast<char*>(sharedBuffer))));
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
LocalFileSystem.cpp
68
context->
postTask
(createCallbackTask(&fileSystemNotAllowed, callbacks));
77
context->
postTask
(createCallbackTask(&fileSystemNotAllowed, callbacks));
90
context->
postTask
(createCallbackTask(&fileSystemNotAllowed, callbacks));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
ParallelJobs.h
88
m_threads[i]->
postTask
(new Task(WTF::bind(m_func, ¶meter(i))));
Completed in 559 milliseconds
1
2
3