Searched refs:cmsWait (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/rtc_base/ |
D | physical_socket_server.cc | 1182 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 …]
|
D | thread.cc | 430 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()
|
D | thread.h | 239 int cmsWait = kForever, 241 virtual bool Peek(Message* pmsg, int cmsWait = 0);
|
D | virtual_socket_server.cc | 611 bool VirtualSocketServer::Wait(int cmsWait, bool process_io) { in Wait() argument 620 wakeup_.Wait(cmsWait); in Wait()
|