Home
last modified time | relevance | path

Searched refs:deviceName (Results 1 – 14 of 14) 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.h255 static netdutils::Status ipSecAddTunnelInterface(const std::string& deviceName,
261 static netdutils::Status ipSecRemoveTunnelInterface(const std::string& deviceName);
406 static netdutils::Status ipSecAddXfrmInterface(const std::string& deviceName,
408 static netdutils::Status ipSecAddVirtualTunnelInterface(const std::string& deviceName,
DXfrmController.cpp1351 netdutils::Status XfrmController::ipSecAddTunnelInterface(const std::string& deviceName, in ipSecAddTunnelInterface() argument
1357 ALOGD("deviceName=%s", deviceName.c_str()); in ipSecAddTunnelInterface()
1368 return ipSecAddXfrmInterface(deviceName, interfaceId, flags); in ipSecAddTunnelInterface()
1370 return ipSecAddVirtualTunnelInterface(deviceName, localAddress, remoteAddress, ikey, okey, in ipSecAddTunnelInterface()
1375 netdutils::Status XfrmController::ipSecAddXfrmInterface(const std::string& deviceName, in ipSecAddXfrmInterface() argument
1379 if (deviceName.empty()) { in ipSecAddXfrmInterface()
1449 strlcpy(xfrmIntfCreateReq.ifName, deviceName.c_str(), IFNAMSIZ); in ipSecAddXfrmInterface()
1464 netdutils::Status XfrmController::ipSecAddVirtualTunnelInterface(const std::string& deviceName, in ipSecAddVirtualTunnelInterface() argument
1471 if (deviceName.empty() || localAddress.empty() || remoteAddress.empty()) { in ipSecAddVirtualTunnelInterface()
1497 char iflaIfNameStrValue[deviceName.length() + 1]; in ipSecAddVirtualTunnelInterface()
[all …]
DNetdNativeService.h217 binder::Status ipSecAddTunnelInterface(const std::string& deviceName,
222 binder::Status ipSecUpdateTunnelInterface(const std::string& deviceName,
227 binder::Status ipSecRemoveTunnelInterface(const std::string& deviceName);
DNetdNativeService.cpp699 binder::Status NetdNativeService::ipSecAddTunnelInterface(const std::string& deviceName, in ipSecAddTunnelInterface() argument
707 deviceName, localAddress, remoteAddress, iKey, oKey, interfaceId, false); in ipSecAddTunnelInterface()
711 binder::Status NetdNativeService::ipSecUpdateTunnelInterface(const std::string& deviceName, in ipSecUpdateTunnelInterface() argument
719 deviceName, localAddress, remoteAddress, iKey, oKey, interfaceId, true); in ipSecUpdateTunnelInterface()
723 binder::Status NetdNativeService::ipSecRemoveTunnelInterface(const std::string& deviceName) { in ipSecRemoveTunnelInterface() argument
726 netdutils::Status result = gCtls->xfrmCtrl.ipSecRemoveTunnelInterface(deviceName); in ipSecRemoveTunnelInterface()
/system/netd/server/aidl_api/netd_aidl_interface/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/aidl_api/netd_aidl_interface/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/netd/server/aidl_api/netd_aidl_interface/3/android/net/
DINetd.aidl48 …void ipSecAddTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress, i… in ipSecAddTunnelInterface() argument
49 …void ipSecUpdateTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress… in ipSecUpdateTunnelInterface() argument
50 void ipSecRemoveTunnelInterface(in @utf8InCpp String deviceName); in ipSecRemoveTunnelInterface() argument
/system/netd/server/aidl_api/netd_aidl_interface/current/android/net/
DINetd.aidl48 …void ipSecAddTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress, i… in ipSecAddTunnelInterface() argument
49 …void ipSecUpdateTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress… in ipSecUpdateTunnelInterface() argument
50 void ipSecRemoveTunnelInterface(in @utf8InCpp String deviceName); in ipSecRemoveTunnelInterface() argument
/system/netd/server/binder/android/net/
DINetd.aidl440 in @utf8InCpp String deviceName, in ipSecAddTunnelInterface()
458 in @utf8InCpp String deviceName, in ipSecUpdateTunnelInterface()
470 void ipSecRemoveTunnelInterface(in @utf8InCpp String deviceName); in ipSecRemoveTunnelInterface() argument
/system/netd/server/aidl_api/netd_aidl_interface/4/android/net/
DINetd.aidl48 …void ipSecAddTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress, i… in ipSecAddTunnelInterface() argument
49 …void ipSecUpdateTunnelInterface(in @utf8InCpp String deviceName, in @utf8InCpp String localAddress… in ipSecUpdateTunnelInterface() argument
50 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.cpp268 const std::string deviceName; in TEST_F() member
286 status = mNetd->ipSecAddTunnelInterface(td.deviceName, td.localAddress, td.remoteAddress, in TEST_F()
291 EXPECT_NE(0U, if_nametoindex(td.deviceName.c_str())); in TEST_F()
294 status = mNetd->ipSecUpdateTunnelInterface(td.deviceName, td.localAddress, td.remoteAddress, in TEST_F()
299 status = mNetd->ipSecRemoveTunnelInterface(td.deviceName); in TEST_F()
303 EXPECT_EQ(0U, if_nametoindex(td.deviceName.c_str())); in TEST_F()