Lines Matching refs:interface
69 for (const std::string& interface : mInterfaces) {
70 if (int ret = RouteController::addUsersToVirtualNetwork(mNetId, interface.c_str(), mSecure,
72 ALOGE("failed to add users on interface %s of netId %u", interface.c_str(), mNetId);
84 for (const std::string& interface : mInterfaces) {
85 if (int ret = RouteController::removeUsersFromVirtualNetwork(mNetId, interface.c_str(),
87 ALOGE("failed to remove users on interface %s of netId %u", interface.c_str(), mNetId);
99 int VirtualNetwork::addInterface(const std::string& interface) {
100 if (hasInterface(interface)) {
103 if (int ret = RouteController::addInterfaceToVirtualNetwork(mNetId, interface.c_str(), mSecure,
105 ALOGE("failed to add interface %s to VPN netId %u", interface.c_str(), mNetId);
108 mInterfaces.insert(interface);
112 int VirtualNetwork::removeInterface(const std::string& interface) {
113 if (!hasInterface(interface)) {
116 if (int ret = RouteController::removeInterfaceFromVirtualNetwork(mNetId, interface.c_str(),
118 ALOGE("failed to remove interface %s from VPN netId %u", interface.c_str(), mNetId);
121 mInterfaces.erase(interface);