OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DatabaseThread
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseThread.h
51
class
DatabaseThread
: public ThreadSafeRefCounted<
DatabaseThread
> {
53
static PassRefPtr<
DatabaseThread
> create() { return adoptRef(new
DatabaseThread
); }
54
~
DatabaseThread
();
72
DatabaseThread
();
75
void
databaseThread
();
79
RefPtr<
DatabaseThread
> m_selfRef;
DatabaseThread.cpp
30
#include "modules/webdatabase/
DatabaseThread
.h"
42
DatabaseThread
::
DatabaseThread
()
51
DatabaseThread
::~
DatabaseThread
()
53
// The
DatabaseThread
will only be destructed when both its owner
54
// DatabaseContext has deref'ed it, and the
databaseThread
() thread function
55
// has deref'ed the
DatabaseThread
object. The DatabaseContext destructor
58
// function
databaseThread
(). In shutdown,
databaseThread
() will deref th
[
all
...]
DatabaseContext.h
41
class
DatabaseThread
;
53
DatabaseThread
*
databaseThread
();
68
RefPtr<
DatabaseThread
> m_databaseThread;
DatabaseContext.cpp
41
#include "modules/webdatabase/
DatabaseThread
.h"
87
// they will deref the DatabaseContext from the
DatabaseThread
.
90
// while the Databases are shutting down on the
DatabaseThread
. Hence, there can be
151
DatabaseThread
* DatabaseContext::
databaseThread
()
162
m_databaseThread =
DatabaseThread
::create();
177
// Though we initiate termination of the
DatabaseThread
here in
180
//
DatabaseThread
still rely on this ref between the context and the thread
185
//
DatabaseThread
.
Database.cpp
46
#include "modules/webdatabase/
DatabaseThread
.h"
82
ASSERT(m_databaseContext->
databaseThread
());
140
if (m_deleted || !databaseContext()->
databaseThread
())
147
if (databaseContext()->
databaseThread
()->terminationRequested(&synchronizer)) {
148
LOG(StorageAPI, "Database handle %p is on a terminated
DatabaseThread
, cannot be marked for normal closure\n", this);
153
databaseContext()->
databaseThread
()->scheduleImmediateTask(task.release());
160
DatabaseThread
*
databaseThread
= databaseContext()->
databaseThread
();
161
if (
databaseThread
&& !databaseThread->terminationRequested() && opened())
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk
235
third_party/WebKit/Source/modules/webdatabase/
DatabaseThread
.cpp \
modules.target.darwin-mips.mk
235
third_party/WebKit/Source/modules/webdatabase/
DatabaseThread
.cpp \
modules.target.darwin-x86.mk
235
third_party/WebKit/Source/modules/webdatabase/
DatabaseThread
.cpp \
modules.target.linux-arm.mk
235
third_party/WebKit/Source/modules/webdatabase/
DatabaseThread
.cpp \
modules.target.linux-mips.mk
235
third_party/WebKit/Source/modules/webdatabase/
DatabaseThread
.cpp \
modules.target.linux-x86.mk
235
third_party/WebKit/Source/modules/webdatabase/
DatabaseThread
.cpp \
/external/chromium_org/third_party/WebKit/Source/core/dom/
Document.h
82
class
DatabaseThread
;
[
all
...]
Completed in 201 milliseconds