Home | History | Annotate | Download | only in CoreIPC

Lines Matching refs:runLoop

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));
117 Connection::SyncMessageState::SyncMessageState(RunLoop* runLoop)
118 : m_runLoop(runLoop)
159 ASSERT(m_runLoop == RunLoop::current());
185 PassRefPtr<Connection> Connection::createServerConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
190 PassRefPtr<Connection> Connection::createClientConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop)
367 ASSERT(RunLoop::current() == m_clientRunLoop);