Home
last modified time | relevance | path

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

/external/webrtc/webrtc/base/
Dphysicalsocketserver.cc1230 struct timeval *ptvWait = NULL; in Wait() local
1237 ptvWait = &tvWait; in Wait()
1292 int n = select(fdmax + 1, &fdsRead, &fdsWrite, NULL, ptvWait); in Wait()
1363 if (ptvWait) { in Wait()
1364 ptvWait->tv_sec = 0; in Wait()
1365 ptvWait->tv_usec = 0; in Wait()
1371 ptvWait->tv_sec = tvStop.tv_sec - tvT.tv_sec; in Wait()
1372 ptvWait->tv_usec = tvStop.tv_usec - tvT.tv_usec; in Wait()
1373 if (ptvWait->tv_usec < 0) { in Wait()
1374 ASSERT(ptvWait->tv_sec > 0); in Wait()
[all …]