Lines Matching full:tv
113 struct timeval tv; in basic_thread() local
114 evutil_timerclear(&tv); in basic_thread()
115 tv.tv_sec = 0; in basic_thread()
116 tv.tv_usec = 3000; in basic_thread()
121 assert(evtimer_add(&ev, &tv) == 0); in basic_thread()
149 struct timeval tv; in sigchld_cb() local
153 tv.tv_usec = 100000; in sigchld_cb()
154 tv.tv_sec = 0; in sigchld_cb()
155 event_base_loopexit(base, &tv); in sigchld_cb()
171 struct timeval tv; in thread_basic() local
232 evutil_timerclear(&tv); in thread_basic()
233 tv.tv_sec = 1000; in thread_basic()
234 event_add(&ev, &tv); in thread_basic()
395 struct timeval tv; in SLEEP_MS() local
396 tv.tv_sec = ms/1000; in SLEEP_MS()
397 tv.tv_usec = (ms%1000)*1000; in SLEEP_MS()
398 evutil_usleep_(&tv); in SLEEP_MS()
512 struct timeval tv = {0,0}; in register_events_subthread() local
518 tv.tv_usec = 100*1000; in register_events_subthread()
519 event_add(&time_events[2], &tv); in register_events_subthread()
520 tv.tv_usec = 150*1000; in register_events_subthread()
521 event_add(&time_events[3], &tv); in register_events_subthread()