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_boottime_ms(); in TEST() local
51 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS); in TEST()
59 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST() local
61 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
76 uint64_t t1 = bluetooth::common::time_get_os_boottime_ms(); in TEST() local
81 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_MS); in TEST()
82 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS); in TEST()
97 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST() local
102 ASSERT_GT(t2, t1); in TEST()
103 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_US); in TEST()
104 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
112 uint64_t t1 = bluetooth::common::time_gettimeofday_us(); in TEST() local
113 ASSERT_GT(t1, uint64_t(0)); in TEST()
121 uint64_t t1 = bluetooth::common::time_gettimeofday_us(); in TEST() local
123 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()
138 uint64_t t1 = bluetooth::common::time_gettimeofday_us(); in TEST() local
143 ASSERT_GT(t2, t1); in TEST()
144 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_US); in TEST()
145 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000); in TEST()