Searched refs:workQueue (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/Platform/efl/
H A DWorkQueueEfl.cpp178 void* WorkQueue::workQueueThread(WorkQueue* workQueue) argument
180 while (workQueue->m_threadLoop) {
181 workQueue->performWork();
182 workQueue->performTimerWork();
183 workQueue->performFileDescriptorWork();
186 close(workQueue->m_readFromPipeDescriptor);
187 close(workQueue->m_writeToPipeDescriptor);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSString.cpp158 Vector<JSString*, 32, UnsafeVectorOverflow> workQueue; // Putting strings into a Vector is only OK because there are no GC points in this method. local
161 workQueue.append(m_fibers[i].get());
166 while (!workQueue.isEmpty()) {
167 JSString* currentFiber = workQueue.last();
168 workQueue.removeLast();
173 workQueue.append(currentFiberAsRope->m_fibers[i].get());
190 Vector<JSString*, 32, UnsafeVectorOverflow> workQueue; // These strings are kept alive by the parent rope, so using a Vector is OK. local
193 workQueue.append(m_fibers[i].get());
195 while (!workQueue.isEmpty()) {
196 JSString* currentFiber = workQueue
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Platform/qt/
H A DWorkQueueQt.cpp39 WorkItemQt(WorkQueue* workQueue, const Function<void()>& function) argument
40 : m_queue(workQueue)
47 WorkItemQt(WorkQueue* workQueue, QObject* source, const char* signal, const Function<void()>& function) argument
48 : m_queue(workQueue)
/macosx-10.9.5/WebKit2-7537.78.2/Platform/gtk/
H A DWorkQueueGtk.cpp38 EventSource(const Function<void()>& function, WorkQueue* workQueue) argument
40 , m_workQueue(workQueue)
42 ASSERT(workQueue);
79 SocketEventSource(const Function<void()>& function, WorkQueue* workQueue, int condition, GCancellable* cancellable, const Function<void()>& closeFunction) argument
80 : EventSource(function, workQueue)
166 void WorkQueue::startWorkQueueThread(WorkQueue* workQueue) argument
168 workQueue->workQueueThreadBody();
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/
H A DConnection.cpp259 void Connection::addWorkQueueMessageReceiver(StringReference messageReceiverName, WorkQueue* workQueue, WorkQueueMessageReceiver* workQueueMessageReceiver) argument
264 m_connectionQueue->dispatch(bind(&Connection::addWorkQueueMessageReceiverOnConnectionWorkQueue, this, messageReceiverName, RefPtr<WorkQueue>(workQueue), RefPtr<WorkQueueMessageReceiver>(workQueueMessageReceiver)));
274 void Connection::addWorkQueueMessageReceiverOnConnectionWorkQueue(StringReference messageReceiverName, WorkQueue* workQueue, WorkQueueMessageReceiver* workQueueMessageReceiver) argument
276 ASSERT(workQueue);
280 m_workQueueMessageReceivers.add(messageReceiverName, std::make_pair(workQueue, workQueueMessageReceiver));
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/mac/
H A DConnectionMac.cpp113 static dispatch_source_t createDataAvailableSource(mach_port_t receivePort, WorkQueue* workQueue, const Function<void()>& function) argument
115 dispatch_source_t source = dispatch_source_create(DISPATCH_SOURCE_TYPE_MACH_RECV, receivePort, 0, workQueue->dispatchQueue());

Completed in 107 milliseconds