Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/
Dphysical_socket_server.cc1182 bool PhysicalSocketServer::Wait(int cmsWait, bool process_io) { in Wait() argument
1188 return WaitPoll(cmsWait, signal_wakeup_); in Wait()
1190 return WaitEpoll(cmsWait); in Wait()
1193 return WaitSelect(cmsWait, process_io); in Wait()
1245 bool PhysicalSocketServer::WaitSelect(int cmsWait, bool process_io) { in WaitSelect() argument
1251 if (cmsWait != kForever) { in WaitSelect()
1253 tvWait.tv_sec = cmsWait / 1000; in WaitSelect()
1254 tvWait.tv_usec = (cmsWait % 1000) * 1000; in WaitSelect()
1258 stop_us = rtc::TimeMicros() + cmsWait * 1000; in WaitSelect()
1425 bool PhysicalSocketServer::WaitEpoll(int cmsWait) { in WaitEpoll() argument
[all …]
Dthread.cc430 bool Thread::Peek(Message* pmsg, int cmsWait) { in Peek() argument
435 if (!Get(pmsg, cmsWait)) in Peek()
442 bool Thread::Get(Message* pmsg, int cmsWait, bool process_io) { in Get() argument
454 int64_t cmsTotal = cmsWait; in Get()
507 if (cmsWait == kForever) { in Get()
525 if (cmsWait != kForever) { in Get()
526 if (cmsElapsed >= cmsWait) in Get()
Dthread.h239 int cmsWait = kForever,
241 virtual bool Peek(Message* pmsg, int cmsWait = 0);
Dvirtual_socket_server.cc611 bool VirtualSocketServer::Wait(int cmsWait, bool process_io) { in Wait() argument
620 wakeup_.Wait(cmsWait); in Wait()