• Home
  • Raw
  • Download

Lines Matching refs:timeTakenMs

4509         auto [result, timeTakenMs] = safe_getaddrinfo_time_taken(hostname1, nullptr, hints);  in TEST_F()
4518 EXPECT_GE(timeTakenMs, config.expectedTimeout); in TEST_F()
4519 EXPECT_LE(timeTakenMs, config.expectedTimeout + 1000); in TEST_F()
4524 std::tie(result, timeTakenMs) = safe_getaddrinfo_time_taken(hostname2, nullptr, hints); in TEST_F()
4531 EXPECT_LE(timeTakenMs, 200); in TEST_F()
4617 const int timeTakenMs = s.timeTakenUs() / 1000; in TEST_F() local
4620 EXPECT_GE(timeTakenMs, config.expectedTimeout); in TEST_F()
4621 EXPECT_LE(timeTakenMs, config.expectedTimeout + 1000); in TEST_F()
4689 int timeTakenMs = s.getTimeAndResetUs() / 1000; in TEST_F() local
4693 EXPECT_GE(timeTakenMs, expectedTimeTakenMs); in TEST_F()
4694 EXPECT_LE(timeTakenMs, expectedTimeTakenMs + 1000); in TEST_F()
4702 timeTakenMs = s.timeTakenUs() / 1000; in TEST_F()
4703 EXPECT_LE(timeTakenMs, 500); in TEST_F()
5805 auto [result, timeTakenMs] = safe_getaddrinfo_time_taken(host_name, nullptr, hints); in TEST_F()
5808 EXPECT_NEAR(DNS_TIMEOUT_MS, timeTakenMs, TIMING_TOLERANCE_MS) in TEST_F()
5840 auto [result, timeTakenMs] = safe_getaddrinfo_time_taken(kHelloExampleCom, nullptr, hints); in TEST_F()
5845 EXPECT_NEAR(PARALLEL_LOOKUP_SLEEP_TIME_MS, timeTakenMs, TIMING_TOLERANCE_MS) in TEST_F()
5851 std::tie(result, timeTakenMs) = safe_getaddrinfo_time_taken(kHelloExampleCom, nullptr, hints); in TEST_F()
5855 EXPECT_GT(PARALLEL_LOOKUP_SLEEP_TIME_MS, timeTakenMs); in TEST_F()
5996 auto [result, timeTakenMs] = safe_getaddrinfo_time_taken(hostname.c_str(), nullptr, hints); in TEST_F()
6003 EXPECT_LE(timeTakenMs, 200); in TEST_F()