/test/xts/acts/communication/wifi_standard/entry/src/ohosTest/ets/test/ |
H A D | WifiCandidateNetWork.test.js | 28 function resolveIP(ip) { 29 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
|
H A D | WifiStationEvent.test.js | 29 function resolveIP(ip) { 30 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
|
H A D | WifiManagerStationEvent.test.js | 29 function resolveIP(ip) { 30 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
|
H A D | WifiStationFunctions.test.js | 26 function resolveIP(ip) { 27 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
|
H A D | WifiManagerCandidateNetWork.test.js | 29 function resolveIP(ip) {
30 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
|
H A D | WifiManagerStationFunctions.test.js | 28 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 D | pull_service_gcda.py | 151 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 D | init_gcov.py | 338 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 D | distributed_cfg.cpp | 114 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 D | IoTestSscanf.cpp | 618 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 D | ActWifiErrorCode401.test.js | 52 function resolveIP(ip) {
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
|
/test/testfwk/xdevice/plugins/devicetest/utils/ |
H A D | util.py | 164 查询本机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 D | ActWifiErrorCode201.test.js | 52 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 D | config_manager.py | 100 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 D | kit_lite.py | 173 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
|