Home
last modified time | relevance | path

Searched refs:deviceName (Results 1 – 11 of 11) sorted by relevance

/system/extras/tests/workloads/
Ddefs.sh60 (-s) deviceName=$2; shift;;
88 if [ -z "$deviceName" ]; then
91 devInfo=$(adb devices -l | grep $deviceName)
95 echo Error: could not find device $deviceName
98 deviceName=$1
99 ADB="adb -s $deviceName shell "
/system/netd/server/
DXfrmController.h254 static netdutils::Status ipSecAddTunnelInterface(const std::string& deviceName,
260 static netdutils::Status ipSecRemoveTunnelInterface(const std::string& deviceName);
405 static netdutils::Status ipSecAddXfrmInterface(const std::string& deviceName,
407 static netdutils::Status ipSecAddVirtualTunnelInterface(const std::string& deviceName,
DXfrmController.cpp1353 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()
[all …]
DNetdNativeService.h202 binder::Status ipSecAddTunnelInterface(const std::string& deviceName,
207 binder::Status ipSecUpdateTunnelInterface(const std::string& deviceName,
212 binder::Status ipSecRemoveTunnelInterface(const std::string& deviceName);
DNetdNativeService.cpp684 binder::Status NetdNativeService::ipSecAddTunnelInterface(const std::string& deviceName, in ipSecAddTunnelInterface() argument
692 deviceName, localAddress, remoteAddress, iKey, oKey, interfaceId, false); in ipSecAddTunnelInterface()
696 binder::Status NetdNativeService::ipSecUpdateTunnelInterface(const std::string& deviceName, in ipSecUpdateTunnelInterface() argument
704 deviceName, localAddress, remoteAddress, iKey, oKey, interfaceId, true); in ipSecUpdateTunnelInterface()
708 binder::Status NetdNativeService::ipSecRemoveTunnelInterface(const std::string& deviceName) { in ipSecRemoveTunnelInterface() argument
711 netdutils::Status result = gCtls->xfrmCtrl.ipSecRemoveTunnelInterface(deviceName); in ipSecRemoveTunnelInterface()
/system/netd/server/aidl/netd/1/android/net/
DINetd.aidl30 …void ipSecAddTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress, i… in ipSecAddTunnelInterface() argument
31 …void ipSecUpdateTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress… in ipSecUpdateTunnelInterface() argument
32 void ipSecRemoveTunnelInterface(in @utf8InCpp String deviceName); in ipSecRemoveTunnelInterface() argument
/system/netd/server/binder/android/net/
DINetd.aidl436 in @utf8InCpp String deviceName, in ipSecAddTunnelInterface()
454 in @utf8InCpp String deviceName, in ipSecUpdateTunnelInterface()
466 void ipSecRemoveTunnelInterface(in @utf8InCpp String deviceName); in ipSecRemoveTunnelInterface() argument
/system/netd/server/aidl/netd/2/android/net/
DINetd.aidl47 …void ipSecAddTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress, i… in ipSecAddTunnelInterface() argument
48 …void ipSecUpdateTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress… in ipSecUpdateTunnelInterface() argument
49 void ipSecRemoveTunnelInterface(in @utf8InCpp String deviceName); in ipSecRemoveTunnelInterface() argument
/system/extras/ioblame/
Dioblame-gmail-launch.example35 File: /data/com.google.android.gm/files/deviceName
188 /data/com.google.android.gm/files/deviceName Reads: 4 KB i_size: 17 bytes
Dioblame-gmail-run.example43 File: /data/com.google.android.gm/files/deviceName
914 /data/com.google.android.gm/files/deviceName Reads: 4 KB i_size: 17 bytes
/system/netd/tests/
Dbinder_test.cpp304 const std::string deviceName; in TEST_F() member
322 status = mNetd->ipSecAddTunnelInterface(td.deviceName, td.localAddress, td.remoteAddress, in TEST_F()
327 EXPECT_NE(0U, if_nametoindex(td.deviceName.c_str())); in TEST_F()
330 status = mNetd->ipSecUpdateTunnelInterface(td.deviceName, td.localAddress, td.remoteAddress, in TEST_F()
335 status = mNetd->ipSecRemoveTunnelInterface(td.deviceName); in TEST_F()
339 EXPECT_EQ(0U, if_nametoindex(td.deviceName.c_str())); in TEST_F()