Searched defs:next_time (Results 1 - 5 of 5) sorted by relevance

/external/qemu/hw/timer/
H A Di8254.c130 uint64_t d, next_time, base; local
139 next_time = s->count;
146 next_time = base + s->count;
148 next_time = base + s->count + 1;
154 next_time = base + period2;
156 next_time = base + s->count;
161 next_time = s->count;
163 next_time = s->count + 1;
169 next_time = s->count_load_time + muldiv64(next_time, get_ticks_per_se
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dsta_info.c320 unsigned long next_time = 0; local
355 next_time = hapd->conf->ap_max_inactivity + fuzz;
363 next_time = hapd->conf->ap_max_inactivity + fuzz -
386 next_time = hapd->conf->ap_max_inactivity;
389 if (next_time) {
392 __func__, MAC2STR(sta->addr), next_time);
393 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
/external/wpa_supplicant_8/src/ap/
H A Dsta_info.c320 unsigned long next_time = 0; local
355 next_time = hapd->conf->ap_max_inactivity + fuzz;
363 next_time = hapd->conf->ap_max_inactivity + fuzz -
386 next_time = hapd->conf->ap_max_inactivity;
389 if (next_time) {
392 __func__, MAC2STR(sta->addr), next_time);
393 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dsta_info.c320 unsigned long next_time = 0; local
355 next_time = hapd->conf->ap_max_inactivity + fuzz;
363 next_time = hapd->conf->ap_max_inactivity + fuzz -
386 next_time = hapd->conf->ap_max_inactivity;
389 if (next_time) {
392 __func__, MAC2STR(sta->addr), next_time);
393 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
/external/qemu/hw/intc/
H A Dapic.c85 int64_t initial_count_load_time, next_time; member in struct:APICState
482 s->next_time = 0;
620 int64_t next_time, d; local
634 next_time = s->initial_count_load_time + (d << s->count_shift);
635 timer_mod(s->timer, next_time);
636 s->next_time = next_time;
648 apic_timer_update(s, s->next_time);
862 qemu_put_be64(f, s->next_time);
898 s->next_time
[all...]

Completed in 792 milliseconds