Home
last modified time | relevance | path

Searched refs:vpnNetId (Results 1 – 4 of 4) sorted by relevance

/system/netd/server/
DRouteController.h81 static int addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
83 static int removeVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
DNetworkController.cpp67 int modifyFallthrough(unsigned vpnNetId, const std::string& physicalInterface,
89 int NetworkController::DelegateImpl::modifyFallthrough(unsigned vpnNetId, in modifyFallthrough() argument
93 if (int ret = RouteController::addVirtualNetworkFallthrough(vpnNetId, in modifyFallthrough()
97 vpnNetId); in modifyFallthrough()
101 if (int ret = RouteController::removeVirtualNetworkFallthrough(vpnNetId, in modifyFallthrough()
105 vpnNetId); in modifyFallthrough()
583 int NetworkController::modifyFallthroughLocked(unsigned vpnNetId, bool add) { in modifyFallthroughLocked() argument
598 if (int ret = mDelegateImpl->modifyFallthrough(vpnNetId, physicalInterface, permission, in modifyFallthroughLocked()
DRouteController.cpp601 WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId, in modifyVpnFallthroughRule() argument
612 fwmark.netId = vpnNetId; in modifyVpnFallthroughRule()
1073 int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface, in addVirtualNetworkFallthrough() argument
1075 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission); in addVirtualNetworkFallthrough()
1078 int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId, in removeVirtualNetworkFallthrough() argument
1081 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission); in removeVirtualNetworkFallthrough()
DNetworkController.h102 int modifyFallthroughLocked(unsigned vpnNetId, bool add) WARN_UNUSED_RESULT;