HomeSort by relevance Sort by last modified time
    Searched refs:createCallbackTask (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebKit/chromium/src/
WorkerFileSystemCallbacksBridge.cpp 158 dispatchTaskToMainThread(createCallbackTask(&openFileSystemOnMainThread, commonClient, type, size, create, this, mode));
163 dispatchTaskToMainThread(createCallbackTask(&moveOnMainThread, fileSystem, sourcePath, destinationPath, this, mode));
168 dispatchTaskToMainThread(createCallbackTask(&copyOnMainThread, fileSystem, sourcePath, destinationPath, this, mode));
174 dispatchTaskToMainThread(createCallbackTask(&removeOnMainThread, fileSystem, path, this, mode));
180 dispatchTaskToMainThread(createCallbackTask(&removeRecursivelyOnMainThread, fileSystem, path, this, mode));
186 dispatchTaskToMainThread(createCallbackTask(&readMetadataOnMainThread, fileSystem, path, this, mode));
191 dispatchTaskToMainThread(createCallbackTask(&createFileOnMainThread, fileSystem, path, exclusive, this, mode));
197 dispatchTaskToMainThread(createCallbackTask(&createDirectoryOnMainThread, fileSystem, path, exclusive, this, mode));
203 dispatchTaskToMainThread(createCallbackTask(&fileExistsOnMainThread, fileSystem, path, this, mode));
209 dispatchTaskToMainThread(createCallbackTask(&directoryExistsOnMainThread, fileSystem, path, this, mode))
    [all...]
WorkerFileWriterCallbacksBridge.cpp 64 dispatchTaskToMainThread(createCallbackTask(&writeOnMainThread, this, position, data));
71 dispatchTaskToMainThread(createCallbackTask(&truncateOnMainThread, this, length));
77 dispatchTaskToMainThread(createCallbackTask(&abortOnMainThread, this));
84 dispatchTaskToMainThread(createCallbackTask(&shutdownOnMainThread, bridge));
116 dispatchTaskToWorkerThread(createCallbackTask(&didWriteOnWorkerThread, this, bytes, complete));
121 dispatchTaskToWorkerThread(createCallbackTask(&didFailOnWorkerThread, this, error));
126 dispatchTaskToWorkerThread(createCallbackTask(&didTruncateOnWorkerThread, this));
147 dispatchTaskToMainThread(createCallbackTask(&initOnMainThread, this, path));
199 WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(&runTaskOnMainThread, this, task));
205 m_proxy->postTaskForModeToWorkerContext(createCallbackTask(&runTaskOnWorkerThread, this, task), m_mode)
    [all...]
WebWorkerBase.cpp 92 m_worker->postTaskForModeToWorkerContext(createCallbackTask(&didComplete, this, result), m_mode);
100 worker->dispatchTaskToMainThread(createCallbackTask(&allowDatabaseTask, commonClient, frame, String(name), String(displayName), estimatedSize, this));
265 dispatchTaskToMainThread(createCallbackTask(&postMessageTask, this,
290 dispatchTaskToMainThread(createCallbackTask(&postExceptionTask, this,
315 dispatchTaskToMainThread(createCallbackTask(&postConsoleMessageTask, this,
337 dispatchTaskToMainThread(createCallbackTask(&confirmMessageTask, this,
352 dispatchTaskToMainThread(createCallbackTask(&reportPendingActivityTask,
367 dispatchTaskToMainThread(createCallbackTask(&workerContextClosedTask,
382 dispatchTaskToMainThread(createCallbackTask(&workerContextDestroyedTask,
WebWorkerClientImpl.cpp 142 WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(
159 WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(&terminateWorkerContextTask, this));
174 WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(&postMessageToWorkerContextTask,
204 WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(&workerObjectDestroyedTask,
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,
WebSharedWorkerImpl.cpp 79 createCallbackTask(&connectTask, this, channel.release()));
WebWorkerImpl.cpp 131 createCallbackTask(&postMessageToWorkerContextTask,
  /external/webkit/Source/WebCore/loader/
WorkerThreadableLoader.cpp 98 m_loaderProxy.postTaskToLoader(createCallbackTask(&MainThreadBridge::mainThreadCreateLoader, this, request, options, outgoingReferrer));
132 m_loaderProxy.postTaskToLoader(createCallbackTask(&MainThreadBridge::mainThreadDestroy, this));
148 m_loaderProxy.postTaskToLoader(createCallbackTask(&MainThreadBridge::mainThreadCancel, this));
173 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidSendData, m_workerClientWrapper, bytesSent, totalBytesToBeSent), m_taskMode);
185 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveResponse, m_workerClientWrapper, response), m_taskMode);
196 OwnPtr<Vector<char> > vector = adoptPtr(new Vector<char>(dataLength)); // needs to be an OwnPtr for usage with createCallbackTask.
198 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveData, m_workerClientWrapper, vector.release()), m_taskMode);
209 OwnPtr<Vector<char> > vector = adoptPtr(new Vector<char>(dataLength)); // needs to be an OwnPtr for usage with createCallbackTask.
211 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveCachedMetadata, m_workerClientWrapper, vector.release()), m_taskMode);
222 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidFinishLoading, m_workerClientWrapper, identifier, finishTime), m_taskMode)
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileStreamProxy.cpp 89 m_context->postTask(createCallbackTask(&didStart, this));
110 m_context->postTask(createCallbackTask(&derefProxyOnContext, this));
127 m_context->postTask(createCallbackTask(&didGetSize, this, size));
144 m_context->postTask(createCallbackTask(&didOpen, this, success));
155 m_context->postTask(createCallbackTask(&didOpen, this, success));
182 m_context->postTask(createCallbackTask(&didRead, this, bytesRead));
199 m_context->postTask(createCallbackTask(&didWrite, this, bytesWritten));
216 m_context->postTask(createCallbackTask(&didTruncate, this, success));
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));
FileReader.cpp 132 scriptExecutionContext()->postTask(createCallbackTask(&delayedStart, this));
153 scriptExecutionContext()->postTask(createCallbackTask(&delayedAbort, this));
  /external/webkit/Source/WebCore/websockets/
WorkerThreadableWebSocketChannel.cpp 147 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidSend, m_workerClientWrapper, sent), m_taskMode);
162 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidGetBufferedAmount, m_workerClientWrapper, bufferedAmount), m_taskMode);
208 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidConnect, m_workerClientWrapper), m_taskMode);
220 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidReceiveMessage, m_workerClientWrapper, message), m_taskMode);
233 m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&workerContextDidClose, m_workerClientWrapper, unhandledBufferedAmount), m_taskMode);
249 thisPtr->m_loaderProxy.postTaskForModeToWorkerContext(createCallbackTask(&Bridge::setWebSocketChannel, thisPtr, peer, clientWrapper), taskMode);
261 m_loaderProxy.postTaskToLoader(createCallbackTask(&Bridge::mainThreadCreateWebSocketChannel, this, m_workerClientWrapper, m_taskMode, url, protocol));
284 m_loaderProxy.postTaskToLoader(createCallbackTask(&WorkerThreadableWebSocketChannel::mainThreadConnect, m_peer));
302 m_loaderProxy.postTaskToLoader(createCallbackTask(&WorkerThreadableWebSocketChannel::mainThreadSend, m_peer, message));
324 m_loaderProxy.postTaskToLoader(createCallbackTask(&WorkerThreadableWebSocketChannel::mainThreadBufferedAmount, m_peer))
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBDatabaseBackendImpl.cpp 114 if (!transaction->scheduleTask(createCallbackTask(&IDBDatabaseBackendImpl::createObjectStoreInternal, database, objectStore, transaction),
115 createCallbackTask(&IDBDatabaseBackendImpl::removeObjectStoreFromMap, database, objectStore))) {
151 if (!transaction->scheduleTask(createCallbackTask(&IDBDatabaseBackendImpl::deleteObjectStoreInternal, database, objectStore, transaction),
152 createCallbackTask(&IDBDatabaseBackendImpl::addObjectStoreToMap, database, objectStore))) {
187 if (!transaction->scheduleTask(createCallbackTask(&IDBDatabaseBackendImpl::setVersionInternal, database, version, callbacks, transaction),
188 createCallbackTask(&IDBDatabaseBackendImpl::resetVersion, database, m_version))) {
IDBIndexBackendImpl.cpp 109 if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, IDBCursorBackendInterface::IndexCursor, callbacks, transaction)))
119 if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, IDBCursorBackendInterface::IndexKeyCursor, callbacks, transaction)))
148 if (!transaction->scheduleTask(createCallbackTask(&getInternal, index, key, true, callbacks)))
157 if (!transaction->scheduleTask(createCallbackTask(&getInternal, index, key, false, callbacks)))
SQLCallbackWrapper.h 77 context->postTask(createCallbackTask(&safeRelease, callback));
IDBObjectStoreBackendImpl.cpp 89 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::getInternal, objectStore, key, callbacks)))
135 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::putInternal, objectStore, value, key, putMode, callbacks, transaction)))
283 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::deleteInternal, objectStore, key, callbacks)))
317 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::clearInternal, objectStore, callbacks)))
385 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::createIndexInternal, objectStore, index, transaction),
386 createCallbackTask(&IDBObjectStoreBackendImpl::removeIndexFromMap, objectStore, index))) {
438 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::deleteIndexInternal, objectStore, index, transactionPtr),
439 createCallbackTask(&IDBObjectStoreBackendImpl::addIndexToMap, objectStore, index))) {
458 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::openCursorInternal, objectStore, range, direction, callbacks, transaction)))
IDBCursorBackendImpl.cpp 93 if (!m_transaction->scheduleTask(createCallbackTask(&IDBCursorBackendImpl::continueFunctionInternal, cursor, key, callbacks)))
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 131 m_queue.append(createCallbackTask(&GeolocationPositionCache::readFromDatabase, this));
190 m_queue.append(createCallbackTask(writeToDatabase, this));
  /external/webkit/Source/WebCore/dom/
CrossThreadTask.h 377 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
387 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
397 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
408 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
420 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
433 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
446 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
461 PassOwnPtr<ScriptExecutionContext::Task> createCallbackTask(
  /external/webkit/Source/WebCore/workers/
DefaultSharedWorkerRepository.cpp 166 (*iter)->postTask(createCallbackTask(&postExceptionTask, errorMessage, lineNumber, sourceURL));
178 (*iter)->postTask(createCallbackTask(&postConsoleMessageTask, source, type, level, message, lineNumber, sourceURL));
WorkerMessagingProxy.cpp 291 m_scriptExecutionContext->postTask(createCallbackTask(&postConsoleMessageTask, this, source, type, level, message, lineNumber, sourceURL));

Completed in 225 milliseconds