Home
last modified time | relevance | path

Searched refs:ip (Results 1 - 15 of 15) sorted by relevance

/test/xts/acts/communication/wifi_standard/entry/src/ohosTest/ets/test/
H A DWifiCandidateNetWork.test.js28 function resolveIP(ip) {
29 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
H A DWifiStationEvent.test.js29 function resolveIP(ip) {
30 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
H A DWifiManagerStationEvent.test.js29 function resolveIP(ip) {
30 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
H A DWifiStationFunctions.test.js26 function resolveIP(ip) {
27 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
H A DWifiManagerCandidateNetWork.test.js29 function resolveIP(ip) {
30 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
H A DWifiManagerStationFunctions.test.js28 function resolveIP(ip) {
29 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/testfwk/developer_test/local_coverage/resident_service/
H A Dpull_service_gcda.py151 ip, port, sn = get_config_ip(os.path.join(developer_test_path, "config/user_config.xml"))
158 device_sn_list = get_sn_list("hdc -s %s:%s list targets" % (ip, port))
160 if ip and len(device_sn_list) >= 1 and len(system_dict.keys()) >= 1:
162 get_service_list(ip, sn_str, system_dict, services_dict, component_dict,
164 restore_config(ip, port, sn_str, config_path)
H A Dinit_gcov.py338 logger("user_config.xml device ip not config", "ERROR")
353 # 获取user_config中的device ip
354 ip, port, sn = get_config_ip(os.path.join(developer_test_path, "config/user_config.xml"))
361 sn_list = get_sn_list("hdc -s %s:%s list targets" % (ip, port))
367 modify_cfg_xml_file(developer_test_path, ip, sn_list,
/test/testfwk/developer_test/aw/cxx/distributed/
H A Ddistributed_cfg.cpp114 std::string ip = GetValueInString(valueOfIps, devNo); in GetDeviceIp() local
115 if (!ip.compare("")) { in GetDeviceIp()
121 HiLog::Info(DistributedCfg::LABEL, "get %zu device's ip : %s", devNo + 1, ip.c_str()); in GetDeviceIp()
122 return ip; in GetDeviceIp()
/test/xts/acts/kernel_lite/io_posix/src/
H A DIoTestSscanf.cpp618 int ip[4] = {0}; in HWTEST_F() local
619 ret = sscanf("11.11.11/11", "%d.%d.%d.%d", &ip[0], &ip[1], &ip[2], &ip[3]); in HWTEST_F()
621 EXPECT_EQ(ip[0], 11); in HWTEST_F()
622 EXPECT_EQ(ip[1], 11); in HWTEST_F()
623 EXPECT_EQ(ip[2], 11); in HWTEST_F()
624 EXPECT_EQ(ip[3], 0); in HWTEST_F()
/test/xts/acts/communication/wifi_ErrorCode401/entry/src/ohosTest/js/test/
H A DActWifiErrorCode401.test.js52 function resolveIP(ip) {
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/testfwk/xdevice/plugins/devicetest/utils/
H A Dutil.py164 查询本机ip地址
165 :return: ip
167 ip = "127.0.0.1"
168 return ip
/test/xts/acts/communication/wifi_ErrorCode201/entry/src/ohosTest/js/test/
H A DActWifiErrorCode201.test.js52 function resolveIP(ip) {
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/testfwk/xdevice/src/xdevice/_core/config/
H A Dconfig_manager.py100 dev = {"ip": "", "port": "", "sn": "", "alias": ""}
121 ip = dev.get("ip")
122 if not ip:
123 dev.update({"ip": "127.0.0.1"})
349 if "ip" in data_dic.keys() and "port" in data_dic.keys():
350 remote_ip = data_dic.get("ip", "")
361 remote_dic["ip"] = remote_ip
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
H A Dkit_lite.py173 linux_host: str, nfs_server ip
185 linux_host = remote_info.get("ip", "")
274 remote_info.get("ip"),
316 ip = remote_info.get("ip", "")
319 if not ip or not port or not remote_dir:
320 LOG.warning("Nfs server's ip or port or dir is empty")
327 client = paramiko.Transport(ip, int(port))
451 the mount command should be: mount ip:/d/mount/root

Completed in 10 milliseconds