Searched defs:DatabaseThread (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/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;
/external/webkit/Source/WebCore/storage/
H A DDatabaseThread.cpp30 #include "DatabaseThread.h"
44 DatabaseThread::DatabaseThread() function in class:WebCore::DatabaseThread
53 DatabaseThread::~DatabaseThread()
59 bool DatabaseThread::start()
66 m_threadID = createThread(DatabaseThread::databaseThreadStart, this, "WebCore: Database");
71 void DatabaseThread::requestTermination(DatabaseTaskSynchronizer *cleanupSync)
75 LOG(StorageAPI, "DatabaseThread %p was asked to terminate\n", this);
79 bool DatabaseThread
[all...]
H A DDatabaseThread.h51 class DatabaseThread : public ThreadSafeRefCounted<DatabaseThread> { class in namespace:WebCore
53 static PassRefPtr<DatabaseThread> create() { return adoptRef(new DatabaseThread); }
54 ~DatabaseThread();
72 DatabaseThread();
79 RefPtr<DatabaseThread> m_selfRef;

Completed in 769 milliseconds