• Home
  • Raw
  • Download

Lines Matching refs:deviceName

1353 netdutils::Status XfrmController::ipSecAddTunnelInterface(const std::string& deviceName,  in ipSecAddTunnelInterface()  argument
1359 ALOGD("deviceName=%s", deviceName.c_str()); in ipSecAddTunnelInterface()
1370 return ipSecAddXfrmInterface(deviceName, interfaceId, flags); in ipSecAddTunnelInterface()
1372 return ipSecAddVirtualTunnelInterface(deviceName, localAddress, remoteAddress, ikey, okey, in ipSecAddTunnelInterface()
1377 netdutils::Status XfrmController::ipSecAddXfrmInterface(const std::string& deviceName, in ipSecAddXfrmInterface() argument
1381 if (deviceName.empty()) { in ipSecAddXfrmInterface()
1451 strlcpy(xfrmIntfCreateReq.ifName, deviceName.c_str(), IFNAMSIZ); in ipSecAddXfrmInterface()
1466 netdutils::Status XfrmController::ipSecAddVirtualTunnelInterface(const std::string& deviceName, in ipSecAddVirtualTunnelInterface() argument
1473 if (deviceName.empty() || localAddress.empty() || remoteAddress.empty()) { in ipSecAddVirtualTunnelInterface()
1499 char iflaIfNameStrValue[deviceName.length() + 1]; in ipSecAddVirtualTunnelInterface()
1501 strlcpy(iflaIfNameStrValue, deviceName.c_str(), sizeof(iflaIfNameStrValue)); in ipSecAddVirtualTunnelInterface()
1591 netdutils::Status XfrmController::ipSecRemoveTunnelInterface(const std::string& deviceName) { in ipSecRemoveTunnelInterface() argument
1593 ALOGD("deviceName=%s", deviceName.c_str()); in ipSecRemoveTunnelInterface()
1595 if (deviceName.empty()) { in ipSecRemoveTunnelInterface()
1603 char iflaIfNameStrValue[deviceName.length() + 1]; in ipSecRemoveTunnelInterface()
1605 strlcpy(iflaIfNameStrValue, deviceName.c_str(), sizeof(iflaIfNameStrValue)); in ipSecRemoveTunnelInterface()
1622 return netdutils::statusFromErrno(ret, "Error in deleting IpSec interface " + deviceName); in ipSecRemoveTunnelInterface()