HomeSort by relevance Sort by last modified time
    Searched defs:next_time (Results 1 - 5 of 5) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bsddb3.py 43 # next_time is used as a global variable that survives each instance.
45 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL variable in class:TimingCheck
50 if self.next_time <= now:
51 TimingCheck.next_time = now + self._PRINT_WORKING_MSG_INTERVAL
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bsddb3.py 43 # next_time is used as a global variable that survives each instance.
45 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL variable in class:TimingCheck
50 if self.next_time <= now:
51 TimingCheck.next_time = now + self._PRINT_WORKING_MSG_INTERVAL
  /external/qemu/hw/timer/
i8254.c 130 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_sec(), PIT_FREQ)
    [all...]
  /external/wpa_supplicant_8/src/ap/
sta_info.c 320 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/
apic.c 85 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=qemu_get_be64(f)
    [all...]

Completed in 357 milliseconds