Searched defs:tableType (Results 1 - 2 of 2) sorted by relevance

/system/netd/server/
H A DNetworkController.cpp630 RouteController::TableType tableType; local
632 tableType = RouteController::LOCAL_NETWORK;
635 tableType = RouteController::LEGACY_SYSTEM;
637 tableType = RouteController::LEGACY_NETWORK;
640 tableType = RouteController::INTERFACE;
643 return add ? RouteController::addRoute(interface, destination, nexthop, tableType) :
644 RouteController::removeRoute(interface, destination, nexthop, tableType);
H A DRouteController.cpp880 const char* nexthop, RouteController::TableType tableType) {
882 switch (tableType) {
1097 TableType tableType) {
1098 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
1102 const char* nexthop, TableType tableType) {
1103 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
879 modifyRoute(uint16_t action, const char* interface, const char* destination, const char* nexthop, RouteController::TableType tableType) argument
1096 addRoute(const char* interface, const char* destination, const char* nexthop, TableType tableType) argument
1101 removeRoute(const char* interface, const char* destination, const char* nexthop, TableType tableType) argument

Completed in 43 milliseconds