Home
last modified time | relevance | path

Searched refs:RunLoop (Results 1 – 25 of 74) sorted by relevance

123

/external/webkit/Source/WebKit2/Platform/gtk/
DRunLoopGtk.cpp33 RunLoop::RunLoop() in RunLoop() function in RunLoop
41 RunLoop::~RunLoop() in ~RunLoop()
53 void RunLoop::run() in run()
55 g_main_loop_run(RunLoop::main()->mainLoop()); in run()
58 GMainLoop* RunLoop::mainLoop() in mainLoop()
63 void RunLoop::stop() in stop()
68 gboolean RunLoop::queueWork(RunLoop* runLoop) in queueWork()
74 void RunLoop::wakeUp() in wakeUp()
78 … g_source_set_callback(source.get(), reinterpret_cast<GSourceFunc>(&RunLoop::queueWork), this, 0); in wakeUp()
84 RunLoop::TimerBase::TimerBase(RunLoop* runLoop) in TimerBase()
[all …]
/external/webkit/Source/WebKit2/Platform/qt/
DRunLoopQt.cpp39 class RunLoop::TimerObject : public QObject
43 TimerObject(RunLoop* runLoop) : m_runLoop(runLoop) in TimerObject()
55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId()); in timerEvent()
59 RunLoop* m_runLoop;
63 void RunLoop::run() in run()
68 void RunLoop::stop() in stop()
73 RunLoop::RunLoop() in RunLoop() function in RunLoop
78 RunLoop::~RunLoop() in ~RunLoop()
83 void RunLoop::wakeUp() in wakeUp()
90 void RunLoop::TimerBase::timerFired(RunLoop* runLoop, int ID) in timerFired()
[all …]
/external/webkit/Source/WebKit2/Platform/win/
DRunLoopWin.cpp39 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in RunLoopWndProc()
43 if (RunLoop* runLoop = reinterpret_cast<RunLoop*>(longPtr)) in RunLoopWndProc()
57 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc()
64 RunLoop::TimerBase::timerFired(this, wParam); in wndProc()
71 void RunLoop::run() in run()
82 bool RunLoop::dispatchSentMessagesUntil(const Vector<HWND>& windows, CoreIPC::BinarySemaphore& sema… in dispatchSentMessagesUntil()
123 void RunLoop::stop() in stop()
128 bool RunLoop::registerRunLoopMessageWindowClass() in registerRunLoopMessageWindowClass()
134 windowClass.lpfnWndProc = RunLoop::RunLoopWndProc; in registerRunLoopMessageWindowClass()
135 windowClass.cbWndExtra = sizeof(RunLoop*); in registerRunLoopMessageWindowClass()
[all …]
/external/webkit/Source/WebKit2/Platform/
DRunLoop.cpp32 static RunLoop* s_mainRunLoop;
34 void RunLoop::initializeMainRunLoop() in initializeMainRunLoop()
38 s_mainRunLoop = RunLoop::current(); in initializeMainRunLoop()
41 RunLoop* RunLoop::current() in current()
43 DEFINE_STATIC_LOCAL(WTF::ThreadSpecific<RunLoop>, runLoopData, ()); in current()
47 RunLoop* RunLoop::main() in main()
53 void RunLoop::performWork() in performWork()
67 void RunLoop::scheduleWork(PassOwnPtr<WorkItem> item) in scheduleWork()
DRunLoop.h50 class RunLoop {
55 static RunLoop* current();
56 static RunLoop* main();
72 friend class RunLoop; variable
74 TimerBase(RunLoop*);
88 RunLoop* m_runLoop;
91 static void timerFired(RunLoop*, uint64_t ID);
98 static void timerFired(RunLoop*, int ID);
102 static gboolean timerFiredCallback(RunLoop::TimerBase*);
103 static void destroyNotifyCallback(RunLoop::TimerBase*);
[all …]
/external/webkit/Source/WebKit2/Platform/mac/
DRunLoopMac.mm27 #import "RunLoop.h"
31 void RunLoop::performWork(void* context)
37 static_cast<RunLoop*>(context)->performWork();
40 static_cast<RunLoop*>(context)->performWork();
43 RunLoop::RunLoop() function
52 RunLoop::~RunLoop() function
59 void RunLoop::run()
70 void RunLoop::stop()
90 void RunLoop::wakeUp()
96 // RunLoop::Timer
[all …]
/external/webkit/Source/WebKit2/WebProcess/win/
DWebProcessMainWin.cpp70 RunLoop::initializeMainRunLoop(); in WebProcessMain()
79 WebProcess::shared().initialize(clientIdentifier, RunLoop::main()); in WebProcessMain()
80 RunLoop::run(); in WebProcessMain()
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DConnection.cpp42 static PassRefPtr<SyncMessageState> getOrCreate(RunLoop*);
58 …return RunLoop::dispatchSentMessagesUntil(windowsToReceiveMessages, m_waitForSyncReplySemaphore, a… in waitWhileDispatchingSentWin32Messages()
69 explicit SyncMessageState(RunLoop*);
71 typedef HashMap<RunLoop*, SyncMessageState*> SyncMessageStateMap;
86 RunLoop* m_runLoop;
101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop) in getOrCreate()
117 Connection::SyncMessageState::SyncMessageState(RunLoop* runLoop) in SyncMessageState()
159 ASSERT(m_runLoop == RunLoop::current()); in dispatchMessages()
185 …> Connection::createServerConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop) in createServerConnection()
190 …> Connection::createClientConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop) in createClientConnection()
[all …]
DConnection.h53 class RunLoop; variable
112 … static PassRefPtr<Connection> createServerConnection(Identifier, Client*, RunLoop* clientRunLoop);
113 … static PassRefPtr<Connection> createClientConnection(Identifier, Client*, RunLoop* clientRunLoop);
192 Connection(Identifier, bool isServer, Client*, RunLoop* clientRunLoop);
235 RunLoop* m_clientRunLoop;
/external/webkit/Source/WebKit2/WebProcess/gtk/
DWebProcessMainGtk.cpp56 RunLoop::initializeMainRunLoop(); in WebProcessMainGtk()
66 WebProcess::shared().initialize(socket, RunLoop::main()); in WebProcessMainGtk()
67 RunLoop::run(); in WebProcessMainGtk()
/external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
DThreadLauncherQt.cpp58 WebProcess::shared().initialize(-1, RunLoop::current()); in webThreadBody()
59 RunLoop::run(); in webThreadBody()
/external/webkit/Source/WebKit2/PluginProcess/qt/
DPluginProcessMainQt.cpp60 RunLoop::initializeMainRunLoop(); in PluginProcessMain()
62 RunLoop::run(); in PluginProcessMain()
/external/webkit/Source/WebKit2/UIProcess/Launcher/win/
DThreadLauncherWin.cpp46 WebProcess::shared().initialize(clientIdentifier, RunLoop::current()); in webThreadBody()
47 RunLoop::run(); in webThreadBody()
/external/webkit/Source/WebKit2/WebProcess/qt/
DWebProcessMainQt.cpp154 RunLoop::initializeMainRunLoop(); in WebProcessMainQt()
169 WebKit::WebProcess::shared().initialize(identifier, RunLoop::main()); in WebProcessMainQt()
171 RunLoop::run(); in WebProcessMainQt()
/external/webkit/Source/WebKit2/Shared/
DChildProcess.cpp60 , m_terminationTimer(RunLoop::main(), this, &ChildProcess::terminationTimerFired) in ChildProcess()
80 RunLoop::main()->stop(); in terminate()
/external/webkit/Source/WebKit2/WebProcess/mac/
DWebProcessMainMac.mm30 #import "RunLoop.h"
91 RunLoop::initializeMainRunLoop();
94 WebProcess::shared().initialize(serverPort, RunLoop::main());
109 RunLoop::run();
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DTiledDrawingArea.h77 RunLoop::Timer<TiledDrawingArea> m_displayTimer;
86 RunLoop::Timer<TiledDrawingArea> m_tileUpdateTimer;
DDrawingAreaImpl.h104 RunLoop::Timer<DrawingAreaImpl> m_displayTimer;
105 RunLoop::Timer<DrawingAreaImpl> m_exitCompositingTimer;
/external/webkit/Source/WebKit2/PluginProcess/mac/
DPluginProcessMainMac.mm33 #import "RunLoop.h"
88 RunLoop::initializeMainRunLoop();
94 PluginProcess::shared().initialize(serverPort, RunLoop::main());
98 RunLoop::run();
/external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
DThreadLauncherMac.mm29 #import "RunLoop.h"
47 WebProcess::shared().initialize(serverPort, RunLoop::current());
51 RunLoop::current()->run();
/external/webkit/Source/WebKit2/WebProcess/
DWebProcess.h73 void initialize(CoreIPC::Connection::Identifier, RunLoop*);
76 RunLoop* runLoop() const { return m_runLoop; } in runLoop()
191 RunLoop* m_runLoop;
/external/webkit/Source/WebKit2/PluginProcess/
DPluginProcess.cpp63 void PluginProcess::initialize(CoreIPC::Connection::Identifier serverIdentifier, RunLoop* runLoop) in initialize()
120 RunLoop::current()->stop(); in didClose()
/external/chromium/chrome/browser/first_run/
Dfirst_run_import_observer.h22 void RunLoop();
Dfirst_run_import_observer.cc17 void FirstRunImportObserver::RunLoop() { in RunLoop() function in FirstRunImportObserver
/external/webkit/Source/WebKit2/UIProcess/
DResponsivenessTimer.h58 RunLoop::Timer<ResponsivenessTimer> m_timer;

123