Searched defs:runLoop (Results 1 - 23 of 23) sorted by relevance

/external/webkit/Source/WebCore/platform/cf/
H A DSchedulePair.cpp34 SchedulePair::SchedulePair(CFRunLoopRef runLoop, CFStringRef mode) argument
35 : m_runLoop(runLoop)
43 if (runLoop() != other.runLoop())
H A DSchedulePair.h48 static PassRefPtr<SchedulePair> create(CFRunLoopRef runLoop, CFStringRef mode) { return adoptRef(new SchedulePair(runLoop, mode)); } argument
51 static PassRefPtr<SchedulePair> create(NSRunLoop* runLoop, CFStringRef mode) { return adoptRef(new SchedulePair(runLoop, mode)); } argument
55 CFRunLoopRef runLoop() const { return m_runLoop.get(); } function in class:WebCore::SchedulePair
75 uintptr_t hashCodes[2] = { reinterpret_cast<uintptr_t>(pair->runLoop()), pair->mode() ? CFHash(pair->mode()) : 0 };
/external/webkit/Source/WebCore/websockets/
H A DThreadableWebSocketChannel.cpp61 WorkerRunLoop& runLoop = workerContext->thread()->runLoop(); local
63 mode.append(String::number(runLoop.createUniqueId()));
/external/webkit/Source/JavaScriptCore/runtime/
H A DGCActivityCallbackCF.cpp51 RetainPtr<CFRunLoopRef> runLoop; member in struct:JSC::DefaultGCActivityCallbackPlatformData
71 DefaultGCActivityCallback::DefaultGCActivityCallback(Heap* heap, CFRunLoopRef runLoop) argument
73 commonConstructor(heap, runLoop);
78 CFRunLoopRemoveTimer(d->runLoop.get(), d->timer.get(), kCFRunLoopCommonModes);
81 d->runLoop = 0;
85 void DefaultGCActivityCallback::commonConstructor(Heap* heap, CFRunLoopRef runLoop) argument
91 d->runLoop = runLoop;
93 CFRunLoopAddTimer(d->runLoop.get(), d->timer.get(), kCFRunLoopCommonModes);
103 if (CFRunLoopGetCurrent() == d->runLoop
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCThread.cpp62 return ccThread->runLoop();
65 void* CCThread::runLoop() function in class:WebCore::CCThread
/external/webkit/Source/WebCore/fileapi/
H A DFileThread.cpp89 return fileThread->runLoop();
92 void* FileThread::runLoop() function in class:WebCore::FileThread
/external/webkit/Source/WebCore/platform/network/cf/
H A DCookieStorageCFNet.cpp123 CFRunLoopRef runLoop = cookieStorageObserverRunLoop(); local
124 ASSERT(runLoop);
129 CFHTTPCookieStorageScheduleWithRunLoop(cookieStorage, runLoop, kCFRunLoopCommonModes);
130 CFHTTPCookieStorageAddObserver(cookieStorage, runLoop, kCFRunLoopDefaultMode, notifyCookiesChanged, 0);
137 CFRunLoopRef runLoop = cookieStorageObserverRunLoop(); local
138 ASSERT(runLoop);
143 CFHTTPCookieStorageRemoveObserver(cookieStorage, runLoop, kCFRunLoopDefaultMode, notifyCookiesChanged, 0);
144 CFHTTPCookieStorageUnscheduleFromRunLoop(cookieStorage, runLoop, kCFRunLoopCommonModes);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglDisplay.java170 public void runLoop(){ method in class:LwjglDisplay
182 super.runLoop();
H A DLwjglAbstractDisplay.java145 protected void runLoop(){ method in class:LwjglAbstractDisplay
223 runLoop();
H A DLwjglOffscreenBuffer.java109 protected void runLoop(){ method in class:LwjglOffscreenBuffer
147 runLoop();
H A DLwjglCanvas.java188 protected void runLoop(){ method in class:LwjglCanvas
227 super.runLoop();
/external/webkit/Source/WebCore/workers/
H A DWorkerThread.h55 WorkerRunLoop& runLoop() { return m_runLoop; } function in class:WebCore::WorkerThread
H A DWorkerRunLoop.cpp110 RunLoopSetup(WorkerRunLoop& runLoop) argument
111 : m_runLoop(runLoop)
/external/webkit/Source/WebKit2/Platform/gtk/
H A DRunLoopGtk.cpp68 gboolean RunLoop::queueWork(RunLoop* runLoop) argument
70 runLoop->performWork();
84 RunLoop::TimerBase::TimerBase(RunLoop* runLoop) argument
85 : m_runLoop(runLoop)
/external/webkit/Source/WebKit2/Platform/qt/
H A DRunLoopQt.cpp43 TimerObject(RunLoop* runLoop) : m_runLoop(runLoop) argument
90 void RunLoop::TimerBase::timerFired(RunLoop* runLoop, int ID) argument
92 TimerMap::iterator it = runLoop->m_activeTimers.find(ID);
93 ASSERT(it != runLoop->m_activeTimers.end());
98 runLoop->m_activeTimers.remove(it);
99 runLoop->m_timerObject->killTimer(timer->m_ID);
106 RunLoop::TimerBase::TimerBase(RunLoop* runLoop) argument
107 : m_runLoop(runLoop)
/external/webkit/Source/WebKit2/Platform/
H A DRunLoop.h116 Timer(RunLoop* runLoop, TimerFiredClass* o, TimerFiredFunction f) argument
117 : TimerBase(runLoop)
/external/webkit/Source/WebKit2/Platform/win/
H A DRunLoopWin.cpp43 if (RunLoop* runLoop = reinterpret_cast<RunLoop*>(longPtr))
44 return runLoop->wndProc(hWnd, message, wParam, lParam);
165 void RunLoop::TimerBase::timerFired(RunLoop* runLoop, uint64_t ID) argument
167 TimerMap::iterator it = runLoop->m_activeTimers.find(ID);
168 if (it == runLoop->m_activeTimers.end()) {
176 runLoop->m_activeTimers.remove(it);
177 ::KillTimer(runLoop->m_runLoopMessageWindow, ID);
189 RunLoop::TimerBase::TimerBase(RunLoop* runLoop) argument
190 : m_runLoop(runLoop)
/external/webkit/Source/WebKit2/PluginProcess/
H A DPluginProcess.cpp63 void PluginProcess::initialize(CoreIPC::Connection::Identifier serverIdentifier, RunLoop* runLoop) argument
67 m_connection = CoreIPC::Connection::createClientConnection(serverIdentifier, this, runLoop);
/external/webkit/Source/WebKit2/WebProcess/
H A DWebProcess.h76 RunLoop* runLoop() const { return m_runLoop; } function in class:WebKit::WebProcess
H A DWebProcess.cpp145 void WebProcess::initialize(CoreIPC::Connection::Identifier serverIdentifier, RunLoop* runLoop) argument
149 m_connection = CoreIPC::Connection::createClientConnection(serverIdentifier, this, runLoop);
155 m_runLoop = runLoop;
/external/webkit/Source/WebCore/loader/
H A DWorkerThreadableLoader.cpp71 WorkerRunLoop& runLoop = workerContext->thread()->runLoop(); local
75 mode.append(String::number(runLoop.createUniqueId()));
80 result = runLoop.runInMode(workerContext, mode);
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerBase.cpp220 WorkerRunLoop& runLoop = m_workerThread->runLoop(); local
226 mode.append(String::number(runLoop.createUniqueId()));
231 if (runLoop.runInMode(workerContext, mode) == MessageQueueTerminated) {
242 WorkerRunLoop& runLoop = m_workerThread->runLoop(); local
248 mode.append(String::number(runLoop.createUniqueId()));
254 if (runLoop.runInMode(workerContext, mode) == MessageQueueTerminated)
406 m_workerThread->runLoop().postTaskForMode(task, mode);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DConnection.cpp101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop) argument
104 pair<SyncMessageStateMap::iterator, bool> result = syncMessageStateMap().add(runLoop, 0);
111 RefPtr<SyncMessageState> syncMessageState = adoptRef(new SyncMessageState(runLoop));
117 Connection::SyncMessageState::SyncMessageState(RunLoop* runLoop) argument
118 : m_runLoop(runLoop)

Completed in 339 milliseconds