Lines Matching refs:ai_result

2356         ScopedAddrinfo ai_result;  in TEST_F()  local
2370 ai_result = safe_getaddrinfo(host_name, nullptr, nullptr); in TEST_F()
2371 EXPECT_TRUE(ai_result != nullptr); in TEST_F()
2375 const std::string result_str = ToString(ai_result); in TEST_F()
2383 ai_result.reset(raw_ai_result); in TEST_F()
2387 const std::string result_str = ToString(ai_result); in TEST_F()
2414 addrinfo* ai_result = nullptr; in TEST_F() local
2415 EXPECT_NE(0, getaddrinfo(host_name, nullptr, nullptr, &ai_result)); in TEST_F()
3194 ScopedAddrinfo ai_result; in TEST_F() local
3196 ai_result = safe_getaddrinfo(host_name, nullptr, &hints); in TEST_F()
3198 EXPECT_TRUE(ai_result != nullptr); in TEST_F()
3200 const std::string result_str = ToString(ai_result); in TEST_F()
3204 EXPECT_TRUE(ai_result == nullptr); in TEST_F()
3249 ScopedAddrinfo ai_result = safe_getaddrinfo(host_name2, nullptr, &hints); in TEST_F() local
3250 EXPECT_TRUE(ai_result == nullptr); in TEST_F()
3279 ScopedAddrinfo ai_result = safe_getaddrinfo(host_name2, nullptr, &hints); in TEST_F() local
3280 EXPECT_TRUE(ai_result == nullptr); in TEST_F()
7420 ScopedAddrinfo ai_result(std::move(result.value())); in expectDnsWorksForUid() local
7421 std::vector<std::string> result_strs = ToStrings(ai_result); in expectDnsWorksForUid()
7460 ScopedAddrinfo ai_result(std::move(result.value())); in TEST_F() local
7461 std::vector<std::string> result_strs = ToStrings(ai_result); in TEST_F()
7798 ScopedAddrinfo ai_result(std::move(result.value())); in TEST_F() local
7799 EXPECT_EQ(ToString(ai_result), "192.0.2.0"); in TEST_F()
7858 ScopedAddrinfo ai_result(std::move(result.value())); in TEST_F() local
7859 EXPECT_THAT(ToStrings(ai_result), testing::UnorderedElementsAreArray({v4addr, v6addr})); in TEST_F()