Lines Matching refs:prefixes
278 const std::vector<std::string> prefixes{std::string("2001:db8::/64")}; in TEST_P() local
279 EXPECT_EQ(EX_ILLEGAL_STATE, mOffload->setLocalPrefixes(prefixes).getExceptionCode()); in TEST_P()
352 const std::vector<std::string> prefixes{std::string("192.0.2.1")}; in TEST_P() local
353 EXPECT_EQ(EX_ILLEGAL_ARGUMENT, mOffload->setLocalPrefixes(prefixes).getExceptionCode()); in TEST_P()
358 const std::vector<std::string> prefixes{std::string("fe80::1")}; in TEST_P() local
359 EXPECT_EQ(EX_ILLEGAL_ARGUMENT, mOffload->setLocalPrefixes(prefixes).getExceptionCode()); in TEST_P()
364 const std::vector<std::string> prefixes{std::string("192.0.2.0/24"), std::string("fe80::/64")}; in TEST_P() local
365 auto ret = mOffload->setLocalPrefixes(prefixes); in TEST_P()
373 const std::vector<std::string> prefixes{}; in TEST_P() local
374 EXPECT_EQ(EX_ILLEGAL_ARGUMENT, mOffload->setLocalPrefixes(prefixes).getExceptionCode()); in TEST_P()
379 const std::vector<std::string> prefixes{std::string("192.0.2.0/24"), std::string("invalid")}; in TEST_P() local
380 EXPECT_EQ(EX_ILLEGAL_ARGUMENT, mOffload->setLocalPrefixes(prefixes).getExceptionCode()); in TEST_P()