Lines Matching refs:tv_usec
41 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
42 if ((vvp)->tv_usec >= 1000000) { \
44 (vvp)->tv_usec -= 1000000; \
52 ? (a)->tv_usec op (b)->tv_usec \
60 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
61 if ((res)->tv_usec < 0) { \
62 (res)->tv_usec += 1000000; \
86 dlog(" timeout = %ds + %dus", (int)ev->timeout.tv_sec, (int)ev->timeout.tv_usec); in dump_event()
101 tv->tv_usec = ts.tv_nsec/1000; in getNow()
169 dlog("~~~~ Looking for timers <= %ds + %dus ~~~~", (int)now.tv_sec, (int)now.tv_usec); in processTimeouts()
228 dlog("~~~~ now = %ds + %dus ~~~~", (int)now.tv_sec, (int)now.tv_usec); in calcNextTimeout()
230 (int)tev->timeout.tv_sec, (int)tev->timeout.tv_usec); in calcNextTimeout()
235 tv->tv_sec = tv->tv_usec = 0; in calcNextTimeout()
362 dlog("~~~~ blocking for %ds + %dus ~~~~", (int)tv.tv_sec, (int)tv.tv_usec); in ril_event_loop()