OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threadTimers
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
PlatformThreadData.h
40
class
ThreadTimers
;
48
ThreadTimers
&
threadTimers
() { return *m_threadTimers; }
54
OwnPtr<
ThreadTimers
> m_threadTimers;
ThreadTimers.cpp
28
#include "platform/
ThreadTimers
.h"
46
// Timers are created, started and fired on the same thread, and each thread has its own
ThreadTimers
55
ThreadTimers
::
ThreadTimers
()
66
void
ThreadTimers
::setSharedTimer(SharedTimer* sharedTimer)
77
m_sharedTimer->setFiredFunction(
ThreadTimers
::sharedTimerFired);
82
void
ThreadTimers
::updateSharedTimer()
103
void
ThreadTimers
::sharedTimerFired()
108
PlatformThreadData::current().
threadTimers
().sharedTimerFiredInternal();
113
void
ThreadTimers
::sharedTimerFiredInternal(
[
all
...]
Timer.cpp
31
#include "platform/
ThreadTimers
.h"
51
return PlatformThreadData::current().
threadTimers
().timerHeap();
391
PlatformThreadData::current().
threadTimers
().updateSharedTimer();
399
// Redirect to
ThreadTimers
.
400
PlatformThreadData::current().
threadTimers
().fireTimersInNestedEventLoop();
/external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerRunLoop.cpp
39
#include "platform/
ThreadTimers
.h"
140
PlatformThreadData::current().
threadTimers
().setSharedTimer(m_runLoop.m_sharedTimer.get());
149
PlatformThreadData::current().
threadTimers
().setSharedTimer(0);
Completed in 178 milliseconds