Home
last modified time | relevance | path

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

/device/google/trout/hal/common/agl/watchdog/
Dwatchdog.cpp29 uint64_t usec = 0; in WatchdogThread() local
30 int r = sd_watchdog_enabled(0, &usec); in WatchdogThread()
37 if (usec == 0) { in WatchdogThread()
42 usec = (2 * usec) / 3; // give us breathing room here in WatchdogThread()
43 if (usec == 0) usec = 1; in WatchdogThread()
47 std::chrono::duration<uint64_t, std::micro> mInterval{usec}; in WatchdogThread()