Home
last modified time | relevance | path

Searched refs:ip (Results 1 – 25 of 44) sorted by relevance

12

/test/xts/acts/communication/wifi_standard/src/main/js/test/
DWifiCandidateNetWork.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
DWifiManagerStationEvent.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
DWifiStationEvent.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
DWifiStationFunctions.test.js51 function resolveIP(ip) { argument
52 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
DWifiManagerCandidateNetWork.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
DWifiManagerStationFunctions.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/testfwk/developer_test/localCoverage/resident_service/
Dpull_service_gcda.py148 ip, port, sn = get_config_ip(os.path.join(developer_test_path, "config/user_config.xml")) variable
155 device_sn_list = get_sn_list("hdc -s %s:%s list targets" % (ip, port))
157 if ip and len(device_sn_list) >= 1 and len(system_dict.keys()) >= 1:
159 get_service_list(ip, sn_str, system_dict, services_dict, component_dict,
161 restore_config(ip, port, sn_str, config_path)
Dinit_gcov.py351 ip, port, sn = get_config_ip(os.path.join(developer_test_path, "config/user_config.xml")) variable
358 sn_list = get_sn_list("hdc -s %s:%s list targets" % (ip, port))
364 modify_cfg_xml_file(developer_test_path, ip, sn_list,
/test/testfwk/xdevice/
DREADME_zh.md80 <ip></ip> <!-- ip: 远端设备地址,ip和port为空时使用本地设备,非空时使用远端设备 -->
114 <ip></ip>
131 <ip></ip> <!-- 挂载环境IP地址 -->
DREADME.md76 …>**ip/port**: IP address and port of a remote device. By default, the parameter is left blank, ind…
99 >**server/ip**: IP address of the mounting environment
/test/testfwk/developer_test/aw/cxx/distributed/
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/
DIoTestSscanf.cpp618 int ip[4] = {0}; variable
619 ret = sscanf("11.11.11/11", "%d.%d.%d.%d", &ip[0], &ip[1], &ip[2], &ip[3]);
621 EXPECT_EQ(ip[0], 11);
622 EXPECT_EQ(ip[1], 11);
623 EXPECT_EQ(ip[2], 11);
624 EXPECT_EQ(ip[3], 0);
/test/xts/acts/communication/wifi_ErrorCode202/src/main/js/test/
DActWifiErrorCode202.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/xts/acts/telephony/telephonyjstest/netmanager_base/multicastconnection_dns/entry/src/main/ets/test/
DMulticastconnectionAsync.test.ets22 let ip:Array<string>=['1.2.1.2','2.3.2.3'];
51 connection.addCustomDnsRule(host,ip,(err,data) => {
74 connection.addCustomDnsRule(host_null,ip,(err,data) => {
96 await connection.addCustomDnsRule(host,ip);
DMulticastconnectionPromise.test.ets23 let ip:Array<string>=['1.2.1.2','2.3.2.3'];
54 connection.addCustomDnsRule(host,ip).then((data) => {
75 connection.addCustomDnsRule(host_null,ip).then((data) => {
/test/xts/acts/communication/wifi_ErrorCode401/src/main/js/test/
DActWifiErrorCode401.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/xts/acts/validator/acts_validator/src/main/ets/pages/Wifi/model/
DWifiModel.ets97 resolveIP(ip) {
98 let address: string = ip.toString()
115 ipInfoList.push({ key: 'DHCP服务端ip:', value: this.resolveIP(ipInfo.serverIp) })
/test/xts/acts/telephony/telephonyjstest/netmanager_base/multicastconnection201_dns/entry/src/main/ets/test/
DMulticastconnection_201.test.ets22 let ip:Array<string>=['1.2.1.2','2.3.2.3'];
52 connection.addCustomDnsRule(host,ip,(err,data)=>{
75 connection.addCustomDnsRule(host,ip).then((data)=>{
/test/xts/dcts/communication/softbus_standard/common/
Dnet_trans_common.c255 uint16_t port = device->addr[0].info.ip.port; in OnDefDeviceFound()
257 … (strncpy_s(ipTmp, IP_STR_MAX_LEN, device->addr[0].info.ip.ip, strlen(device->addr[0].info.ip.ip))… in OnDefDeviceFound()
264 g_ethAddr.info.ip.port = port; in OnDefDeviceFound()
265 if (strncpy_s(g_ethAddr.info.ip.ip, IP_STR_MAX_LEN, ipTmp, strlen(ipTmp)) != 0) { in OnDefDeviceFound()
/test/xts/acts/communication/wifi_ErrorCode201/src/main/js/test/
DActWifiErrorCode201.test.js52 function resolveIP(ip) { argument
53 return (ip>>24 & 0xFF) + "." + (ip>>16 & 0xFF) + "." + (ip>>8 & 0xFF) + "." + (ip & 0xFF);
/test/xts/tools/sample/AppSampleE/
DREADME_zh.md89 4.局域网发生变化,需要修改Constant里的ip地址。
/test/testfwk/developer_test/
DREADME_zh.md902 <ip></ip>
1188 4. 远程映射设备,修改usr_config.xml中的ip号,设备映射方式查看上面介绍的远程端口映射,
1191 <!-- 配置远程映射机器的IP(设备挂载的pc的ip) -->
1193 <ip></ip>
DREADME.md185 <ip>192.168.1.1</ip>
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
Dkit_lite.py323 ip = remote_info.get("ip", "")
326 if not ip or not port or not remote_dir:
336 client = paramiko.Transport(ip, int(port))
/test/xts/acts/arkui/libuv/
DBUILD.gn73 "//third_party/libuv/test/test-ip-name.c",

12