Home
last modified time | relevance | path

Searched refs:cleanupSync (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/storage/
DDatabaseThread.cpp71 void DatabaseThread::requestTermination(DatabaseTaskSynchronizer *cleanupSync) in requestTermination() argument
74 m_cleanupSync = cleanupSync; in requestTermination()
130 DatabaseTaskSynchronizer* cleanupSync = m_cleanupSync; in databaseThread() local
135 if (cleanupSync) // Someone wanted to know when we were done cleaning up. in databaseThread()
136 cleanupSync->taskCompleted(); in databaseThread()
DDatabaseThread.h57 void requestTermination(DatabaseTaskSynchronizer* cleanupSync);
/external/webkit/Source/WebCore/workers/
DWorkerThread.cpp198 DatabaseTaskSynchronizer cleanupSync; in performTask() local
199 workerContext->stopDatabases(&cleanupSync); in performTask()
213 cleanupSync.waitForTaskCompletion(); in performTask()
/external/webkit/Source/WebCore/dom/
DScriptExecutionContext.cpp154 void ScriptExecutionContext::stopDatabases(DatabaseTaskSynchronizer* cleanupSync) in stopDatabases() argument
158 m_databaseThread->requestTermination(cleanupSync); in stopDatabases()
159 else if (cleanupSync) in stopDatabases()
160 cleanupSync->taskCompleted(); in stopDatabases()