Lines Matching refs:nextHop
1638 const std::string& nextHop, const std::string& mtu) { in ipRouteString() argument
1641 if (!nextHop.empty()) { in ipRouteString()
1642 dstString += " via " + nextHop; in ipRouteString()
1654 if (nextHop.empty()) { in ipRouteString()
1665 const std::string& dst, const std::string& nextHop, in expectNetworkRouteExistsWithMtu() argument
1667 std::string routeString = ipRouteString(ifName, dst, nextHop, mtu); in expectNetworkRouteExistsWithMtu()
1668 EXPECT_TRUE(ipRouteExists(ipVersion, table, ipRouteString(ifName, dst, nextHop, mtu))) in expectNetworkRouteExistsWithMtu()
1673 const std::string& dst, const std::string& nextHop, in expectNetworkRouteExists() argument
1675 expectNetworkRouteExistsWithMtu(ipVersion, ifName, dst, nextHop, "", table); in expectNetworkRouteExists()
1679 const std::string& dst, const std::string& nextHop, in expectNetworkRouteDoesNotExist() argument
1681 std::string routeString = ipRouteString(ifName, dst, nextHop, ""); in expectNetworkRouteDoesNotExist()
1682 EXPECT_FALSE(ipRouteExists(ipVersion, table, ipRouteString(ifName, dst, nextHop, ""))) in expectNetworkRouteDoesNotExist()
1922 parcel.nextHop = td.testNextHop; in TEST_F()