/external/webkit/Source/WebKit2/Platform/gtk/ |
D | RunLoopGtk.cpp | 33 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/ |
D | RunLoopQt.cpp | 39 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/ |
D | RunLoopWin.cpp | 39 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/ |
D | RunLoop.cpp | 32 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()
|
D | RunLoop.h | 50 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/ |
D | RunLoopMac.mm | 27 #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/ |
D | WebProcessMainWin.cpp | 70 RunLoop::initializeMainRunLoop(); in WebProcessMain() 79 WebProcess::shared().initialize(clientIdentifier, RunLoop::main()); in WebProcessMain() 80 RunLoop::run(); in WebProcessMain()
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
D | Connection.cpp | 42 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 …]
|
D | Connection.h | 53 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/ |
D | WebProcessMainGtk.cpp | 56 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/ |
D | ThreadLauncherQt.cpp | 58 WebProcess::shared().initialize(-1, RunLoop::current()); in webThreadBody() 59 RunLoop::run(); in webThreadBody()
|
/external/webkit/Source/WebKit2/PluginProcess/qt/ |
D | PluginProcessMainQt.cpp | 60 RunLoop::initializeMainRunLoop(); in PluginProcessMain() 62 RunLoop::run(); in PluginProcessMain()
|
/external/webkit/Source/WebKit2/UIProcess/Launcher/win/ |
D | ThreadLauncherWin.cpp | 46 WebProcess::shared().initialize(clientIdentifier, RunLoop::current()); in webThreadBody() 47 RunLoop::run(); in webThreadBody()
|
/external/webkit/Source/WebKit2/WebProcess/qt/ |
D | WebProcessMainQt.cpp | 154 RunLoop::initializeMainRunLoop(); in WebProcessMainQt() 169 WebKit::WebProcess::shared().initialize(identifier, RunLoop::main()); in WebProcessMainQt() 171 RunLoop::run(); in WebProcessMainQt()
|
/external/webkit/Source/WebKit2/Shared/ |
D | ChildProcess.cpp | 60 , m_terminationTimer(RunLoop::main(), this, &ChildProcess::terminationTimerFired) in ChildProcess() 80 RunLoop::main()->stop(); in terminate()
|
/external/webkit/Source/WebKit2/WebProcess/mac/ |
D | WebProcessMainMac.mm | 30 #import "RunLoop.h" 91 RunLoop::initializeMainRunLoop(); 94 WebProcess::shared().initialize(serverPort, RunLoop::main()); 109 RunLoop::run();
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | TiledDrawingArea.h | 77 RunLoop::Timer<TiledDrawingArea> m_displayTimer; 86 RunLoop::Timer<TiledDrawingArea> m_tileUpdateTimer;
|
D | DrawingAreaImpl.h | 104 RunLoop::Timer<DrawingAreaImpl> m_displayTimer; 105 RunLoop::Timer<DrawingAreaImpl> m_exitCompositingTimer;
|
/external/webkit/Source/WebKit2/PluginProcess/mac/ |
D | PluginProcessMainMac.mm | 33 #import "RunLoop.h" 88 RunLoop::initializeMainRunLoop(); 94 PluginProcess::shared().initialize(serverPort, RunLoop::main()); 98 RunLoop::run();
|
/external/webkit/Source/WebKit2/UIProcess/Launcher/mac/ |
D | ThreadLauncherMac.mm | 29 #import "RunLoop.h" 47 WebProcess::shared().initialize(serverPort, RunLoop::current()); 51 RunLoop::current()->run();
|
/external/webkit/Source/WebKit2/WebProcess/ |
D | WebProcess.h | 73 void initialize(CoreIPC::Connection::Identifier, RunLoop*); 76 RunLoop* runLoop() const { return m_runLoop; } in runLoop() 191 RunLoop* m_runLoop;
|
/external/webkit/Source/WebKit2/PluginProcess/ |
D | PluginProcess.cpp | 63 void PluginProcess::initialize(CoreIPC::Connection::Identifier serverIdentifier, RunLoop* runLoop) in initialize() 120 RunLoop::current()->stop(); in didClose()
|
/external/chromium/chrome/browser/first_run/ |
D | first_run_import_observer.h | 22 void RunLoop();
|
D | first_run_import_observer.cc | 17 void FirstRunImportObserver::RunLoop() { in RunLoop() function in FirstRunImportObserver
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | ResponsivenessTimer.h | 58 RunLoop::Timer<ResponsivenessTimer> m_timer;
|