Home | History | Annotate | Download | only in threading

Lines Matching refs:TimeDelta

22   WatchdogCounter(const TimeDelta& duration,
57 Watchdog watchdog1(TimeDelta::FromMilliseconds(300), "Disabled", false);
58 Watchdog watchdog2(TimeDelta::FromMilliseconds(300), "Enabled", true);
63 Watchdog watchdog1(TimeDelta::FromMilliseconds(300), "Disabled", false);
69 Watchdog watchdog2(TimeDelta::FromMilliseconds(300), "Enabled", true);
78 WatchdogCounter watchdog(TimeDelta::FromMilliseconds(10), "Enabled", true);
80 SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(TimeDelta::FromMinutes(5),
87 WatchdogCounter watchdog(TimeDelta(), "Enabled2", true);
89 watchdog.ArmSomeTimeDeltaAgo(TimeDelta::FromSeconds(2));
91 SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(TimeDelta::FromMinutes(5),
99 WatchdogCounter watchdog(TimeDelta::FromMilliseconds(10), "Disabled", false);
108 WatchdogCounter watchdog(TimeDelta::FromSeconds(1), "Enabled3", true);
116 if (end - start > TimeDelta::FromMilliseconds(500)) {
132 watchdog.ArmSomeTimeDeltaAgo(TimeDelta::FromSeconds(10));
134 SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(TimeDelta::FromMinutes(5),