Lines Matching refs:deviceName
1453 netdutils::Status XfrmController::ipSecAddTunnelInterface(const std::string& deviceName, in ipSecAddTunnelInterface() argument
1459 ALOGD("deviceName=%s", deviceName.c_str()); in ipSecAddTunnelInterface()
1470 return ipSecAddXfrmInterface(deviceName, interfaceId, flags); in ipSecAddTunnelInterface()
1472 return ipSecAddVirtualTunnelInterface(deviceName, localAddress, remoteAddress, ikey, okey, in ipSecAddTunnelInterface()
1477 netdutils::Status XfrmController::ipSecAddXfrmInterface(const std::string& deviceName, in ipSecAddXfrmInterface() argument
1481 if (deviceName.empty()) { in ipSecAddXfrmInterface()
1551 strlcpy(xfrmIntfCreateReq.ifName, deviceName.c_str(), IFNAMSIZ); in ipSecAddXfrmInterface()
1566 netdutils::Status XfrmController::ipSecAddVirtualTunnelInterface(const std::string& deviceName, in ipSecAddVirtualTunnelInterface() argument
1573 if (deviceName.empty() || localAddress.empty() || remoteAddress.empty()) { in ipSecAddVirtualTunnelInterface()
1599 char iflaIfNameStrValue[deviceName.length() + 1]; in ipSecAddVirtualTunnelInterface()
1601 strlcpy(iflaIfNameStrValue, deviceName.c_str(), sizeof(iflaIfNameStrValue)); in ipSecAddVirtualTunnelInterface()
1691 netdutils::Status XfrmController::ipSecRemoveTunnelInterface(const std::string& deviceName) { in ipSecRemoveTunnelInterface() argument
1693 ALOGD("deviceName=%s", deviceName.c_str()); in ipSecRemoveTunnelInterface()
1695 if (deviceName.empty()) { in ipSecRemoveTunnelInterface()
1703 char iflaIfNameStrValue[deviceName.length() + 1]; in ipSecRemoveTunnelInterface()
1705 strlcpy(iflaIfNameStrValue, deviceName.c_str(), sizeof(iflaIfNameStrValue)); in ipSecRemoveTunnelInterface()
1722 return netdutils::statusFromErrno(ret, "Error in deleting IpSec interface " + deviceName); in ipSecRemoveTunnelInterface()