Home
last modified time | relevance | path

Searched refs:cmsWait (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/base/
Dmessagequeue.cc165 bool MessageQueue::Peek(Message *pmsg, int cmsWait) { in Peek() argument
170 if (!Get(pmsg, cmsWait)) in Peek()
177 bool MessageQueue::Get(Message *pmsg, int cmsWait, bool process_io) { in Get() argument
189 int cmsTotal = cmsWait; in Get()
252 if (cmsWait == kForever) { in Get()
268 if (cmsWait != kForever) { in Get()
269 if (cmsElapsed >= cmsWait) in Get()
Dphysicalsocketserver.cc1227 bool PhysicalSocketServer::Wait(int cmsWait, bool process_io) { in Wait() argument
1233 if (cmsWait != kForever) { in Wait()
1235 tvWait.tv_sec = cmsWait / 1000; in Wait()
1236 tvWait.tv_usec = (cmsWait % 1000) * 1000; in Wait()
1444 bool PhysicalSocketServer::Wait(int cmsWait, bool process_io) { in Wait() argument
1445 int cmsTotal = cmsWait; in Wait()
1485 if (cmsWait == kForever) { in Wait()
1486 cmsNext = cmsWait; in Wait()
1598 if ((cmsWait != kForever) && (cmsElapsed >= cmsWait)) { in Wait()
Dmessagequeue.h190 virtual bool Get(Message *pmsg, int cmsWait = kForever,
192 virtual bool Peek(Message *pmsg, int cmsWait = 0);
Dvirtualsocketserver.cc581 bool VirtualSocketServer::Wait(int cmsWait, bool process_io) { in Wait() argument
586 return socketserver()->Wait(cmsWait, process_io); in Wait()