Lines Matching refs:tv
176 struct timeval tv; in add_q_timeout_sec() local
178 tv.tv_sec = when; in add_q_timeout_sec()
179 tv.tv_usec = 0; in add_q_timeout_sec()
180 add_q_timeout_tv(queue, &tv, callback, arg); in add_q_timeout_sec()
288 struct timeval tv; in start_eloop() local
307 timersub(&timeouts->when, &now, &tv); in start_eloop()
308 if (tv.tv_sec > INT_MAX / 1000 || in start_eloop()
309 (tv.tv_sec == INT_MAX / 1000 && in start_eloop()
310 (tv.tv_usec + 999) / 1000 > INT_MAX % 1000)) in start_eloop()
313 msecs = tv.tv_sec * 1000 + in start_eloop()
314 (tv.tv_usec + 999) / 1000; in start_eloop()