HomeSort by relevance Sort by last modified time
    Searched defs:next_time (Results 1 - 7 of 7) 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/chromium/chrome/browser/safe_browsing/
protocol_manager_unittest.cc 41 int next_time = pm.GetNextUpdateTime(true) / (60 * 1000); // Minutes local
42 EXPECT_TRUE(next_time >= 30 && next_time <= 60);
45 next_time = pm.GetNextUpdateTime(true) / (60 * 1000);
46 EXPECT_TRUE(next_time >= 60 && next_time <= 120);
49 next_time = pm.GetNextUpdateTime(true) / (60 * 1000);
50 EXPECT_TRUE(next_time >= 120 && next_time <= 240);
53 next_time = pm.GetNextUpdateTime(true) / (60 * 1000)
    [all...]
  /external/qemu/hw/
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...]
apic.c 85 int64_t initial_count_load_time, next_time; member in struct:APICState
481 s->next_time = 0;
618 int64_t next_time, d; local
632 next_time = s->initial_count_load_time + (d << s->count_shift);
633 qemu_mod_timer(s->timer, next_time);
634 s->next_time = next_time;
646 apic_timer_update(s, s->next_time);
860 qemu_put_be64(f, s->next_time);
896 s->next_time=qemu_get_be64(f)
    [all...]
  /external/wpa_supplicant_8/src/ap/
sta_info.c 309 unsigned long next_time = 0; local
344 next_time = hapd->conf->ap_max_inactivity + fuzz;
352 next_time = hapd->conf->ap_max_inactivity + fuzz -
375 next_time = hapd->conf->ap_max_inactivity;
378 if (next_time) {
381 __func__, MAC2STR(sta->addr), next_time);
382 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
  /sdk/emulator/qtools/
trace_reader_base.h 169 uint64_t next_time; member in struct:BBReader::TimeRec

Completed in 999 milliseconds