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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseContext.h 41 class DatabaseThread;
61 DatabaseThread* databaseThread();
76 RefPtrWillBeMember<DatabaseThread> m_databaseThread;
DatabaseContext.cpp 36 #include "modules/webdatabase/DatabaseThread.h"
80 // they will deref the DatabaseContext from the DatabaseThread.
83 // while the Databases are shutting down on the DatabaseThread. Hence, there can be
150 DatabaseThread* DatabaseContext::databaseThread()
161 m_databaseThread = DatabaseThread::create();
170 return databaseThread() && !m_hasRequestedTermination;
175 // Though we initiate termination of the DatabaseThread here in
178 // DatabaseThread still rely on this ref between the context and the thread
183 // DatabaseThread
    [all...]
Database.cpp 38 #include "modules/webdatabase/DatabaseThread.h"
233 ASSERT(m_databaseContext->databaseThread());
242 // For Database, we open the SQLite database on the DatabaseThread, and
268 databaseContext()->databaseThread()->scheduleTask(task.release());
276 ASSERT(databaseContext()->databaseThread());
277 ASSERT(databaseContext()->databaseThread()->isDatabaseThread());
296 databaseContext()->databaseThread()->recordDatabaseClosed(this);
337 databaseContext()->databaseThread()->scheduleTask(task.release());
350 databaseContext()->databaseThread()->scheduleTask(task.release());
355 return databaseContext()->databaseThread()->transactionClient()
    [all...]
DatabaseTask.cpp 34 #include "modules/webdatabase/DatabaseThread.h"
62 if (!m_synchronizer && !m_database->databaseContext()->databaseThread()->isDatabaseOpen(m_database.get())) {
SQLTransactionBackend.cpp 35 #include "modules/webdatabase/DatabaseThread.h"
247 // After scheduling the transaction with the DatabaseThread (Database::scheduleTransaction()):
249 // DatabaseThread // MessageQueue<DatabaseTask> m_queue points to ...
255 // When executing the transaction (in DatabaseThread::databaseThread()):
280 // SQLTransactionBackend alive until DatabaseThread::databaseThread() releases its
300 // - To clean up, DatabaseThread::databaseThread() will call
309 // scheduled in DatabaseThread::m_queue but hasn't gotten to execut
    [all...]

Completed in 242 milliseconds