/foundation/communication/netmanager_base/services/netconnmanager/src/ |
H A D | net_http_probe.cpp | 217 std::string NetHttpProbe::GetAddrInfo(const std::string &domain) in GetAddrInfo() function in OHOS::NetManagerStandard::NetHttpProbe 227 if (NetsysController::GetInstance().GetAddrInfo(domain, serverName, hints, netId_, result) < 0) { in GetAddrInfo() 379 std::string proxyIpAddress = GetAddrInfo(proxyDomain); in SetProxyOption() 493 ipAddress = GetAddrInfo(httpDomain); in SendDnsProbe() 500 ipAddress = GetAddrInfo(httpDomain); in SendDnsProbe() 506 ipAddress = GetAddrInfo(httpsDomain); in SendDnsProbe()
|
/foundation/communication/netmanager_base/test/fuzztest/netbasebranch_fuzzer/ |
H A D | net_base_branch_fuzzer.cpp | 101 instance_->GetAddrInfo(testString); in NetHttpProbeBranchFuzzTest() 105 instance_->GetAddrInfo(testString); in NetHttpProbeBranchFuzzTest()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/ |
H A D | dns_manager_test.cpp | 79 dnsManager.GetAddrInfo(hostName, serverName, hints, NET_ID, res); in HWTEST_F()
|
H A D | netsys_controller_test.cpp | 396 ret = NetsysController::GetInstance().GetAddrInfo(hostName, serverName, hints, netId, res); in HWTEST_F() 548 ret = instance_->GetAddrInfo(iface, iface, hints, 0, res); in HWTEST_F()
|
H A D | netsys_native_service_test.cpp | 461 int32_t ret = instance_->GetAddrInfo(hostName, serverName, hints, netId, res); in HWTEST_F()
|
H A D | netsys_controller_service_impl_test.cpp | 457 ret = instance_->GetAddrInfo(hostName, serverName, hints, netId, res); in HWTEST_F()
|
H A D | netsys_native_service_stub_test.cpp | 93 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
/foundation/communication/netmanager_base/services/netconnmanager/include/ |
H A D | net_http_probe.h | 53 std::string GetAddrInfo(const std::string &domain);
|
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/ |
H A D | dns_manager.h | 111 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
/foundation/communication/netmanager_base/services/netmanagernative/src/manager/ |
H A D | dns_manager.cpp | 121 int32_t DnsManager::GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints, in GetAddrInfo() function in OHOS::nmd::DnsManager
|
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_multi_test/ |
H A D | net_http_probe_test.cpp | 80 std::string result = instance_->GetAddrInfo(domain); in HWTEST_F()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/ |
H A D | i_netsys_service.h | 71 virtual int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
H A D | netsys_native_service_proxy.h | 37 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
/foundation/communication/netmanager_base/services/netmanagernative/include/ |
H A D | netsys_native_service.h | 61 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_distributed_test/ |
H A D | netsys_native_service_stub_test.cpp | 71 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
/foundation/communication/netmanager_base/services/netsyscontroller/include/ |
H A D | netsys_controller_service_impl.h | 277 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
H A D | i_netsys_controller_service.h | 304 virtual int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
H A D | netsys_controller.h | 285 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
H A D | netsys_native_client.h | 317 int32_t GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints,
|
/foundation/communication/netmanager_base/services/netsyscontroller/src/ |
H A D | netsys_controller.cpp | 466 int32_t NetsysController::GetAddrInfo(const std::string &hostName, const std::string &serverName, const AddrInfo &hints, in GetAddrInfo() function in OHOS::NetManagerStandard::NetsysController 475 return netsysService_->GetAddrInfo(hostName, serverName, hints, netId, res); in GetAddrInfo()
|
H A D | netsys_controller_service_impl.cpp | 294 int32_t NetsysControllerServiceImpl::GetAddrInfo(const std::string &hostName, const std::string &serverName, in GetAddrInfo() function in OHOS::NetManagerStandard::NetsysControllerServiceImpl 297 return netsysClient_.GetAddrInfo(hostName, serverName, hints, netId, res); in GetAddrInfo()
|
H A D | netsys_native_client.cpp | 583 int32_t NetsysNativeClient::GetAddrInfo(const std::string &hostName, const std::string &serverName, in GetAddrInfo() function in OHOS::NetManagerStandard::NetsysNativeClient 588 NETMGR_LOG_E("GetAddrInfo netsysNativeService_ is null"); in GetAddrInfo() 591 return proxy->GetAddrInfo(hostName, serverName, hints, netId, res); in GetAddrInfo()
|
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/ |
H A D | net_manager_native.cpp | 550 return dnsManager_->GetAddrInfo(hostName, serverName, hints, netId, res); in DnsGetAddrInfo()
|
/foundation/communication/netmanager_base/services/netmanagernative/src/ |
H A D | netsys_native_service.cpp | 206 int32_t NetsysNativeService::GetAddrInfo(const std::string &hostName, const std::string &serverName, in GetAddrInfo() function in OHOS::NetsysNative::NetsysNativeService
|
H A D | netsys_native_service_stub.cpp | 521 auto ret = GetAddrInfo(hostName, serverName, hints, netId, retInfo); in CmdGetAddrInfo()
|