Home
last modified time | relevance | path

Searched refs:nextHop (Results 1 – 6 of 6) sorted by relevance

/system/netd/server/aidl/netd/1/android/net/
DINetd.aidl64 …etId, in @utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop); in networkAddRoute() argument
65 …etId, in @utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop); in networkRemoveRoute() argument
66 …@utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop, int uid); in networkAddLegacyRoute() argument
67 …@utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop, int uid); in networkRemoveLegacyRoute() argument
/system/netd/server/binder/android/net/
DINetd.aidl793 in @utf8InCpp String nextHop); in networkAddRoute() argument
811 in @utf8InCpp String nextHop); in networkRemoveRoute() argument
830 in @utf8InCpp String nextHop, in networkAddLegacyRoute() argument
850 in @utf8InCpp String nextHop, in networkRemoveLegacyRoute() argument
/system/netd/server/aidl/netd/2/android/net/
DINetd.aidl81 …etId, in @utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop); in networkAddRoute() argument
82 …etId, in @utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop); in networkRemoveRoute() argument
83 …@utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop, int uid); in networkAddLegacyRoute() argument
84 …@utf8InCpp String ifName, in @utf8InCpp String destination, in @utf8InCpp String nextHop, int uid); in networkRemoveLegacyRoute() argument
/system/netd/server/
DNetdNativeService.cpp968 const std::string& nextHop) { in networkAddRoute() argument
974 nextHop.empty() ? nullptr : nextHop.c_str(), legacy, uid); in networkAddRoute()
980 const std::string& nextHop) { in networkRemoveRoute() argument
985 nextHop.empty() ? nullptr : nextHop.c_str(), legacy, uid); in networkRemoveRoute()
991 const std::string& nextHop, int32_t uid) { in networkAddLegacyRoute() argument
995 nextHop.empty() ? nullptr : nextHop.c_str(), legacy, in networkAddLegacyRoute()
1002 const std::string& nextHop, in networkRemoveLegacyRoute() argument
1007 nextHop.empty() ? nullptr : nextHop.c_str(), legacy, in networkRemoveLegacyRoute()
DNetdNativeService.h81 const std::string& nextHop) override;
84 const std::string& nextHop) override;
86 const std::string& destination, const std::string& nextHop,
90 const std::string& nextHop, int32_t uid) override;
/system/netd/tests/
Dbinder_test.cpp1682 const std::string& nextHop) { in ipRouteString() argument
1685 if (!nextHop.empty()) { in ipRouteString()
1686 dstString += " via " + nextHop; in ipRouteString()
1693 const std::string& dst, const std::string& nextHop, in expectNetworkRouteExists() argument
1695 EXPECT_TRUE(ipRouteExists(ipVersion, table, ipRouteString(ifName, dst, nextHop))); in expectNetworkRouteExists()
1699 const std::string& dst, const std::string& nextHop, in expectNetworkRouteDoesNotExist() argument
1701 EXPECT_FALSE(ipRouteExists(ipVersion, table, ipRouteString(ifName, dst, nextHop))); in expectNetworkRouteDoesNotExist()