HomeSort by relevance Sort by last modified time
    Searched full:cleanupsync (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/storage/
DatabaseThread.cpp 71 void DatabaseThread::requestTermination(DatabaseTaskSynchronizer *cleanupSync)
74 m_cleanupSync = cleanupSync;
130 DatabaseTaskSynchronizer* cleanupSync = m_cleanupSync;
135 if (cleanupSync) // Someone wanted to know when we were done cleaning up.
136 cleanupSync->taskCompleted();
DatabaseThread.h 57 void requestTermination(DatabaseTaskSynchronizer* cleanupSync);
  /external/webkit/Source/WebCore/workers/
WorkerThread.cpp 198 DatabaseTaskSynchronizer cleanupSync;
199 workerContext->stopDatabases(&cleanupSync);
213 cleanupSync.waitForTaskCompletion();
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 154 void ScriptExecutionContext::stopDatabases(DatabaseTaskSynchronizer* cleanupSync)
158 m_databaseThread->requestTermination(cleanupSync);
159 else if (cleanupSync)
160 cleanupSync->taskCompleted();
ScriptExecutionContext.h 81 // When the database cleanup is done, cleanupSync will be signalled.

Completed in 60 milliseconds