OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_thread
(Results
1 - 11
of
11
) sorted by null
/external/webkit/WebCore/storage/
StorageSyncManager.cpp
51
:
m_thread
(LocalStorageThread::create())
56
m_thread
->start();
62
ASSERT(!
m_thread
);
80
if (
m_thread
) {
81
m_thread
->terminate();
82
m_thread
= 0;
89
ASSERT(
m_thread
);
90
if (
m_thread
)
91
m_thread
->scheduleTask(LocalStorageTask::createImport(area.get()));
92
return
m_thread
;
[
all
...]
LocalStorageTask.cpp
39
,
m_thread
(0)
48
,
m_thread
(thread)
50
ASSERT(
m_thread
);
68
m_thread
->performTerminate();
DatabaseTracker.cpp
71
,
m_thread
(currentThread())
79
ASSERT(currentThread() ==
m_thread
);
86
ASSERT(currentThread() ==
m_thread
);
92
ASSERT(currentThread() ==
m_thread
);
98
ASSERT(currentThread() ==
m_thread
);
125
ASSERT(currentThread() ==
m_thread
);
161
ASSERT(currentThread() ==
m_thread
);
169
ASSERT(currentThread() ==
m_thread
);
196
ASSERT(currentThread() ==
m_thread
);
202
ASSERT(currentThread() ==
m_thread
);
[
all
...]
LocalStorageTask.h
58
LocalStorageThread*
m_thread
;
member in class:WebCore::LocalStorageTask
StorageSyncManager.h
56
OwnPtr<LocalStorageThread>
m_thread
;
member in class:WebCore::StorageSyncManager
DatabaseTracker.h
144
ThreadIdentifier
m_thread
;
member in class:WebCore::DatabaseTracker
/external/webkit/WebCore/platform/
Timer.h
82
ThreadIdentifier
m_thread
;
member in class:WebCore::TimerBase
106
ASSERT(
m_thread
== currentThread());
Timer.cpp
168
,
m_thread
(currentThread())
181
ASSERT(
m_thread
== currentThread());
189
ASSERT(
m_thread
== currentThread());
284
ASSERT(
m_thread
== currentThread());
/external/webkit/WebCore/workers/
DefaultSharedWorkerRepository.cpp
63
void setThread(PassRefPtr<SharedWorkerThread> thread) {
m_thread
= thread; }
64
SharedWorkerThread* thread() { return
m_thread
.get(); }
101
RefPtr<SharedWorkerThread>
m_thread
;
member in class:WebCore::SharedWorkerProxy
151
ASSERT(
m_thread
);
152
m_thread
->runLoop().postTaskForMode(task, mode);
218
if (
m_thread
)
219
m_thread
->stop();
WorkerContext.h
73
WorkerThread* thread() const { return
m_thread
; }
150
WorkerThread*
m_thread
;
member in class:WebCore::WorkerContext
WorkerContext.cpp
65
,
m_thread
(thread)
253
m_notifications = NotificationCenter::create(scriptExecutionContext(),
m_thread
->getNotificationPresenter());
Completed in 79 milliseconds