Lines Matching refs:t1

31   uint64_t t1 = bluetooth::common::time_get_os_boottime_ms();  in TEST()  local
32 ASSERT_GT(t1, uint64_t(0)); in TEST()
40 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST() local
41 ASSERT_GT(t1, uint64_t(0)); in TEST()
49 uint64_t t1 = bluetooth::common::time_get_os_monotonic_raw_us(); in TEST() local
50 ASSERT_GT(t1, uint64_t(0)); in TEST()
58 uint64_t t1 = bluetooth::common::time_get_os_boottime_ms(); in TEST() local
60 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS); in TEST()
68 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST() local
70 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
79 uint64_t t1 = bluetooth::common::time_get_os_monotonic_raw_us(); in TEST() local
81 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
96 uint64_t t1 = bluetooth::common::time_get_os_boottime_ms(); in TEST() local
101 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_MS); in TEST()
102 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS); in TEST()
117 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST() local
122 ASSERT_GT(t2, t1); in TEST()
123 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_US); in TEST()
124 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
132 uint64_t t1 = bluetooth::common::time_gettimeofday_us(); in TEST() local
133 ASSERT_GT(t1, uint64_t(0)); in TEST()
141 uint64_t t1 = bluetooth::common::time_gettimeofday_us(); in TEST() local
143 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
158 uint64_t t1 = bluetooth::common::time_gettimeofday_us(); in TEST() local
163 ASSERT_GT(t2, t1); in TEST()
164 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_US); in TEST()
165 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()