Lines Matching refs:ptvWait
1230 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()
1375 ptvWait->tv_usec += 1000000; in Wait()
1376 ptvWait->tv_sec -= 1; in Wait()