Home
last modified time | relevance | path

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

/dragonfly/contrib/gdb-7/gdb/
HDevent-loop.c1144 struct timeval time_now, delta; in create_timer() local
1151 gettimeofday (&time_now, NULL); in create_timer()
1154 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec; in create_timer()
1155 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec; in create_timer()
1244 struct timeval time_now; in handle_timer_event() local
1247 gettimeofday (&time_now, NULL); in handle_timer_event()
1252 if ((timer_ptr->when.tv_sec > time_now.tv_sec) in handle_timer_event()
1253 || ((timer_ptr->when.tv_sec == time_now.tv_sec) in handle_timer_event()
1254 && (timer_ptr->when.tv_usec > time_now.tv_usec))) in handle_timer_event()
1278 struct timeval time_now, delta; in poll_timers() local
[all …]
/dragonfly/crypto/openssh/
HDmoduli.c157 time_t time_now; in qfileout() local
160 time(&time_now); in qfileout()
161 gtm = gmtime(&time_now); in qfileout()
538 time_t time_now, elapsed; in print_progress() local
543 time_now = monotime(); in print_progress()
545 time_start = time_prev = time_now; in print_progress()
549 if (time_now - time_prev < 5 * 60) in print_progress()
551 time_prev = time_now; in print_progress()
552 elapsed = time_now - time_start; in print_progress()
558 time(&time_now); in print_progress()
[all …]
/dragonfly/usr.sbin/rpc.lockd/
HDlock_proc.c152 struct timeval retry_time, time_now; in get_client() local
160 gettimeofday(&time_now, NULL); in get_client()
169 < time_now.tv_sec)) { in get_client()
256 clnt_cache_time[clnt_cache_next_to_use] = time_now.tv_sec; in get_client()
/dragonfly/usr.sbin/rpcbind/
HDrpcb_svc_com.c938 time_t min_time, time_now; in forward_register() local
943 time_now = time(NULL); in forward_register()
946 lastxid = time_now * NFORWARD; in forward_register()
964 if ((time_now - FINFO[i].time) > MAXTIME_OFF) in forward_register()
990 FINFO[j].time = time_now; in forward_register()
/dragonfly/contrib/gdb-7/gdb/mi/
HDmi-main.c2213 struct timeval time_now, delta, update_threshold; in mi_load_progress() local
2239 gettimeofday (&time_now, NULL); in mi_load_progress()
2241 delta.tv_usec = time_now.tv_usec - last_update.tv_usec; in mi_load_progress()
2242 delta.tv_sec = time_now.tv_sec - last_update.tv_sec; in mi_load_progress()
2277 last_update.tv_sec = time_now.tv_sec; in mi_load_progress()
2278 last_update.tv_usec = time_now.tv_usec; in mi_load_progress()
/dragonfly/usr.bin/chat/
HDchat.c1236 time_t time_now = time (NULL); in get_string() local
1237 struct tm* tm_now = localtime (&time_now); in get_string()
/dragonfly/contrib/wpa_supplicant/src/p2p/
HDp2p.c716 struct os_reltime time_now; in p2p_add_device() local
750 os_get_reltime(&time_now); in p2p_add_device()
751 rx_time = &time_now; in p2p_add_device()