Searched refs:runLoop (Results 1 - 25 of 49) sorted by relevance

12

/external/webkit/Source/WebCore/platform/mac/
H A DSchedulePairMac.mm35 SchedulePair::SchedulePair(NSRunLoop* runLoop, CFStringRef mode)
36 : m_nsRunLoop(runLoop)
37 , m_runLoop([runLoop getCFRunLoop])
/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 };
H A DRunLoopTimerCF.cpp60 CFRunLoopAddTimer(schedulePair->runLoop(), m_timer.get(), schedulePair->mode());
/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/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/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/webkit/Source/WebCore/websockets/
H A DThreadableWebSocketChannel.cpp61 WorkerRunLoop& runLoop = workerContext->thread()->runLoop(); local
63 mode.append(String::number(runLoop.createUniqueId()));
/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/WebCore/platform/graphics/chromium/cc/
H A DCCThread.cpp62 return ccThread->runLoop();
65 void* CCThread::runLoop() function in class:WebCore::CCThread
H A DCCThread.h65 void* 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/WebCore/fileapi/
H A DFileThread.cpp89 return fileThread->runLoop();
92 void* FileThread::runLoop() function in class:WebCore::FileThread
H A DFileThread.h76 void* runLoop();
/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);
H A DWebSharedWorkerImpl.cpp78 workerThread()->runLoop().postTask(
/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/mac/
H A DRunLoopMac.mm112 RunLoop::TimerBase::TimerBase(RunLoop* runLoop)
113 : m_runLoop(runLoop)
/external/webkit/Source/WebCore/platform/network/mac/
H A DFormDataStreamMac.mm211 CFReadStreamScheduleWithRunLoop(form->currentStream, (*it)->runLoop(), (*it)->mode());
337 static void formSchedule(CFReadStreamRef, CFRunLoopRef runLoop, CFStringRef runLoopMode, void* context)
342 CFReadStreamScheduleWithRunLoop(form->currentStream, runLoop, runLoopMode);
343 form->scheduledRunLoopPairs.add(SchedulePair::create(runLoop, runLoopMode));
346 static void formUnschedule(CFReadStreamRef, CFRunLoopRef runLoop, CFStringRef runLoopMode, void* context)
351 CFReadStreamUnscheduleFromRunLoop(form->currentStream, runLoop, runLoopMode);
352 form->scheduledRunLoopPairs.remove(SchedulePair::create(runLoop, runLoopMode));
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
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();
/external/webkit/Source/WebKit2/Platform/
H A DRunLoop.h116 Timer(RunLoop* runLoop, TimerFiredClass* o, TimerFiredFunction f) argument
117 : TimerBase(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/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);

Completed in 284 milliseconds

12