HomeSort by relevance Sort by last modified time
    Searched refs:RunLoop (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/webkit/Source/WebKit2/Platform/gtk/
RunLoopGtk.cpp 28 #include "RunLoop.h"
33 RunLoop::RunLoop()
41 RunLoop::~RunLoop()
53 void RunLoop::run()
55 g_main_loop_run(RunLoop::main()->mainLoop());
58 GMainLoop* RunLoop::mainLoop()
63 void RunLoop::stop()
68 gboolean RunLoop::queueWork(RunLoop* runLoop
    [all...]
  /external/webkit/Source/WebKit2/Platform/
RunLoop.cpp 27 #include "RunLoop.h"
32 static RunLoop* s_mainRunLoop;
34 void RunLoop::initializeMainRunLoop()
38 s_mainRunLoop = RunLoop::current();
41 RunLoop* RunLoop::current()
43 DEFINE_STATIC_LOCAL(WTF::ThreadSpecific<RunLoop>, runLoopData, ());
47 RunLoop* RunLoop::main()
53 void RunLoop::performWork(
    [all...]
RunLoop.h 50 class RunLoop {
55 static RunLoop* current();
56 static RunLoop* main();
72 friend class RunLoop;
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/qt/
RunLoopQt.cpp 28 #include "RunLoop.h"
39 class RunLoop::TimerObject : public QObject
43 TimerObject(RunLoop* runLoop) : m_runLoop(runLoop)
55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId());
59 RunLoop* m_runLoop;
63 void RunLoop::run()
68 void RunLoop::stop()
73 RunLoop::RunLoop(
    [all...]
  /external/webkit/Source/WebKit2/Platform/win/
RunLoopWin.cpp 27 #include "RunLoop.h"
39 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
43 if (RunLoop* runLoop = reinterpret_cast<RunLoop*>(longPtr))
44 return runLoop->wndProc(hWnd, message, wParam, lParam);
49 // Associate the RunLoop with the window.
57 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
64 RunLoop::TimerBase::timerFired(this, wParam);
71 void RunLoop::run(
    [all...]
  /external/webkit/Source/WebKit2/Platform/mac/
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()
52 RunLoop::~RunLoop()
59 void RunLoop::run()
70 void RunLoop::stop(
    [all...]
  /external/chromium/chrome/browser/first_run/
first_run_import_observer.h 22 void RunLoop();
first_run_import_observer.cc 17 void FirstRunImportObserver::RunLoop() {
  /external/webkit/Source/WebKit2/WebProcess/gtk/
WebProcessMainGtk.cpp 32 #include <WebKit2/RunLoop.h>
56 RunLoop::initializeMainRunLoop();
66 WebProcess::shared().initialize(socket, RunLoop::main());
67 RunLoop::run();
  /external/webkit/Source/WebKit2/WebProcess/win/
WebProcessMainWin.cpp 30 #include "RunLoop.h"
70 RunLoop::initializeMainRunLoop();
79 WebProcess::shared().initialize(clientIdentifier, RunLoop::main());
80 RunLoop::run();
  /external/webkit/Source/WebKit2/PluginProcess/qt/
PluginProcessMainQt.cpp 33 #include "RunLoop.h"
60 RunLoop::initializeMainRunLoop();
62 RunLoop::run();
  /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ThreadLauncherQt.cpp 30 #include "RunLoop.h"
58 WebProcess::shared().initialize(-1, RunLoop::current());
59 RunLoop::run();
  /external/webkit/Source/WebKit2/UIProcess/Launcher/win/
ThreadLauncherWin.cpp 29 #include "RunLoop.h"
46 WebProcess::shared().initialize(clientIdentifier, RunLoop::current());
47 RunLoop::run();
  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ThreadLauncherMac.mm 29 #import "RunLoop.h"
47 WebProcess::shared().initialize(serverPort, RunLoop::current());
51 RunLoop::current()->run();
  /external/webkit/Source/WebKit2/UIProcess/
ResponsivenessTimer.h 29 #include "RunLoop.h"
58 RunLoop::Timer<ResponsivenessTimer> m_timer;
ResponsivenessTimer.cpp 38 , m_timer(RunLoop::main(), this, &ResponsivenessTimer::timerFired)
VisitedLinkProvider.h 29 #include "RunLoop.h"
61 RunLoop::Timer<VisitedLinkProvider> m_pendingVisitedLinksTimer;
  /external/webkit/Source/WebKit2/PluginProcess/mac/
PluginProcessMainMac.mm 33 #import "RunLoop.h"
88 RunLoop::initializeMainRunLoop();
94 PluginProcess::shared().initialize(serverPort, RunLoop::main());
98 RunLoop::run();
  /external/webkit/Source/WebKit2/Shared/
ChildProcess.cpp 60 , m_terminationTimer(RunLoop::main(), this, &ChildProcess::terminationTimerFired)
80 RunLoop::main()->stop();
ChildProcess.h 30 #include "RunLoop.h"
80 RunLoop::Timer<ChildProcess> m_terminationTimer;
  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ThreadLauncher.cpp 29 #include "RunLoop.h"
46 RunLoop::main()->scheduleWork(WorkItem::create(this, &ThreadLauncher::didFinishLaunchingThread, connectionIdentifier));
  /external/webkit/Source/WebKit2/WebProcess/mac/
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/
DrawingAreaImpl.h 32 #include "RunLoop.h"
104 RunLoop::Timer<DrawingAreaImpl> m_displayTimer;
105 RunLoop::Timer<DrawingAreaImpl> m_exitCompositingTimer;
TiledDrawingArea.h 32 #include "RunLoop.h"
77 RunLoop::Timer<TiledDrawingArea> m_displayTimer;
86 RunLoop::Timer<TiledDrawingArea> m_tileUpdateTimer;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.cpp 31 #include "RunLoop.h"
42 static PassRefPtr<SyncMessageState> getOrCreate(RunLoop*);
58 return RunLoop::dispatchSentMessagesUntil(windowsToReceiveMessages, m_waitForSyncReplySemaphore, absoluteTime);
69 explicit SyncMessageState(RunLoop*);
71 typedef HashMap<RunLoop*, SyncMessageState*> SyncMessageStateMap;
86 RunLoop* m_runLoop;
101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop)
104 pair<SyncMessageStateMap::iterator, bool> result = syncMessageStateMap().add(runLoop, 0);
111 RefPtr<SyncMessageState> syncMessageState = adoptRef(new SyncMessageState(runLoop));
    [all...]

Completed in 355 milliseconds

1 2 3