Searched refs:DatabaseThread (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/storage/wince/
H A DDatabaseThreadWinCE.cpp25 #include "DatabaseThread.h"
32 DatabaseThread::DatabaseThread() function in class:WebCore::DatabaseThread
33 : m_timer(this, &DatabaseThread::timerFired)
37 DatabaseThread::~DatabaseThread()
41 void DatabaseThread::requestTermination()
46 bool DatabaseThread::terminationRequested() const
51 void DatabaseThread::timerFired(Timer<DatabaseThread>*)
[all...]
H A DDatabaseThreadWinCE.h35 class DatabaseThread: public WTF::RefCounted<DatabaseThread> { class in namespace:WebCore
38 static PassRefPtr<DatabaseThread> create() { return adoptRef(new DatabaseThread); }
39 ~DatabaseThread();
55 DatabaseThread();
57 void timerFired(Timer<DatabaseThread>*);
60 Timer<DatabaseThread> m_timer;
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseThread.cpp30 #include "DatabaseThread.h"
43 DatabaseThread::DatabaseThread() function in class:WebCore::DatabaseThread
52 DatabaseThread::~DatabaseThread()
54 // The DatabaseThread will only be destructed when both its owner
56 // has deref'ed the DatabaseThread object. The DatabaseContext destructor
60 // DatabaseThread before returning.
64 bool DatabaseThread::start()
71 m_threadID = createThread(DatabaseThread
[all...]
H A DDatabaseThread.h52 class DatabaseThread : public ThreadSafeRefCounted<DatabaseThread> { class in namespace:WebCore
54 static PassRefPtr<DatabaseThread> create() { return adoptRef(new DatabaseThread); }
55 ~DatabaseThread();
73 DatabaseThread();
80 RefPtr<DatabaseThread> m_selfRef;
H A DDatabaseContext.h43 class DatabaseThread;
55 DatabaseThread* databaseThread();
71 RefPtr<DatabaseThread> m_databaseThread;
H A DDatabaseContext.cpp39 #include "DatabaseThread.h"
89 // they will deref the DatabaseContext from the DatabaseThread.
92 // while the Databases are shutting down on the DatabaseThread. Hence, there can be
161 DatabaseThread* DatabaseContext::databaseThread()
172 m_databaseThread = DatabaseThread::create();
187 // Though we initiate termination of the DatabaseThread here in
190 // DatabaseThread still rely on this ref between the context and the thread
195 // DatabaseThread.
H A DDatabase.cpp41 #include "DatabaseThread.h"
150 LOG(StorageAPI, "Database handle %p is on a terminated DatabaseThread, cannot be marked for normal closure\n", this);
162 DatabaseThread* databaseThread = databaseContext()->databaseThread();
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.h80 class DatabaseThread;

Completed in 93 milliseconds