Home
last modified time | relevance | path

Searched refs:addrList (Results 1 - 20 of 20) sorted by relevance

/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_multi_test/
H A Dnet_handle_test.cpp65 std::vector<INetAddr> addrList; in HWTEST_F() local
69 int32_t ret = handler->GetAddressesByName(host, addrList); in HWTEST_F()
76 std::vector<INetAddr> addrList; in HWTEST_F() local
80 int32_t ret = handler->GetAddressesByName(host, addrList); in HWTEST_F()
H A Dnet_conn_client_test.cpp1097 std::vector<INetAddr> addrList = {}; in HWTEST_F() local
1098 int32_t ret = DelayedSingleton<NetConnClient>::GetInstance()->GetAddressesByName(host, netId, addrList); in HWTEST_F()
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dnet_handle.cpp28 int32_t NetHandle::GetAddressesByName(const std::string &host, std::vector<INetAddr> &addrList) in GetAddressesByName() argument
34 return NetConnClient::GetInstance().GetAddressesByName(host, netId_, addrList); in GetAddressesByName()
H A Dnet_conn_client.cpp404 int32_t NetConnClient::GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) in GetAddressesByName() argument
412 return proxy->GetAddressesByName(host, netId, addrList); in GetAddressesByName()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/btm/
H A Dbtm_acl.c971 const BtAddr *addrList, uint8_t addrCount, uint8_t status, uint16_t connectionHandle, uint16_t role) in BtmOnLeConnectCallback()
983 block->callbacks->leConnectionComplete(status, connectionHandle, addrList + i, role, block->context); in BtmOnLeConnectCallback()
992 static void BtmGetLeConnectingAddr(BtAddr **addrList, uint8_t *addrCount) in BtmGetLeConnectingAddr() argument
1010 *addrList = MEM_CALLOC.alloc(sizeof(BtAddr) * count); in BtmGetLeConnectingAddr()
1014 if (*addrList != NULL) { in BtmGetLeConnectingAddr()
1020 (*addrList)[index] = connection->addr; in BtmGetLeConnectingAddr()
1044 const BtAddr *addrList, const uint8_t addrCount, const HciLeConnectionCompleteEventParam *eventParam) in BtmUpdateUpdateWhiteListOnLeConnectionComplete()
1076 uint8_t addrType = ((addrList + i)->type == BT_PUBLIC_DEVICE_ADDRESS) ? WHITE_LIST_ADDRESS_TYPE_PUBLIC in BtmUpdateUpdateWhiteListOnLeConnectionComplete()
1078 BtmRemoveDeviceFromWhiteList(addrType, addrList + i); in BtmUpdateUpdateWhiteListOnLeConnectionComplete()
1103 BtAddr *addrList in BtmOnLeConnectionComplete() local
970 BtmOnLeConnectCallback( const BtAddr *addrList, uint8_t addrCount, uint8_t status, uint16_t connectionHandle, uint16_t role) BtmOnLeConnectCallback() argument
1043 BtmUpdateUpdateWhiteListOnLeConnectionComplete( const BtAddr *addrList, const uint8_t addrCount, const HciLeConnectionCompleteEventParam *eventParam) BtmUpdateUpdateWhiteListOnLeConnectionComplete() argument
1224 BtmUpdateWhiteListOnLeEnhancedConnectionComplete( const BtAddr *addrList, const uint8_t addrCount, const HciLeEnhancedConnectionCompleteEventParam *eventParam) BtmUpdateWhiteListOnLeEnhancedConnectionComplete() argument
1284 BtAddr *addrList = NULL; BtmOnLeEnhancedConnectionComplete() local
[all...]
/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/
H A Dnet_handle.h36 int32_t GetAddressesByName(const std::string &host, std::vector<INetAddr> &addrList);
H A Dnet_conn_client.h246 * @param addrList list of network addresses
251 int32_t GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList);
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_service_test/
H A Dnet_conn_service_proxy_test.cpp488 std::vector<INetAddr> addrList; in HWTEST_F() local
489 int32_t ret = instance_->GetAddressesByName(host, TEST_NETID, addrList); in HWTEST_F()
H A Dnet_conn_service_stub_test.h134 int32_t GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) override
/foundation/communication/netmanager_base/test/netconnmanager/unittest/netmgr_distributed_test/
H A Dnet_conn_service_stub_test.h134 int32_t GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) override
/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/proxy/
H A Dnet_conn_service_proxy.h59 int32_t GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) override;
H A Di_net_conn_service.h69 virtual int32_t GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) = 0;
/foundation/communication/netmanager_base/services/netconnmanager/src/stub/
H A Dnet_conn_service_stub.cpp1060 std::vector<INetAddr> addrList; in OnGetAddressesByName() local
1061 int32_t ret = GetAddressesByName(host, netId, addrList); in OnGetAddressesByName()
1066 uint32_t size = static_cast<uint32_t>(addrList.size()); in OnGetAddressesByName()
1072 for (auto p = addrList.begin(); p != addrList.end(); ++p) { in OnGetAddressesByName()
/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_conn_service.cpp1558 int32_t NetConnService::GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) in GetAddressesByName() argument
1560 return NetManagerCenter::GetInstance().GetAddressesByName(host, static_cast<uint16_t>(netId), addrList); in GetAddressesByName()
1565 std::vector<INetAddr> addrList; in GetAddressByName() local
1566 int ret = GetAddressesByName(host, netId, addrList); in GetAddressByName()
1568 if (!addrList.empty()) { in GetAddressByName()
1569 addr = addrList[0]; in GetAddressByName()
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_manager_test/
H A Dnet_conn_manager_test.cpp781 std::vector<INetAddr> addrList; in HWTEST_F() local
782 result = proxy->GetAddressesByName(host, netId, addrList); in HWTEST_F()
H A Dnet_conn_service_test.cpp446 std::vector<INetAddr> addrList; in HWTEST_F() local
447 auto ret = NetConnService::GetInstance()->GetAddressesByName(TEST_HOST, TEST_NETID, addrList); in HWTEST_F()
/foundation/communication/netmanager_ext/test/vpnmanager/unittest/conn_vpn_manager_test/
H A Dnet_conn_manager_test.cpp781 std::vector<INetAddr> addrList; in HWTEST_F() local
782 result = proxy->GetAddressesByName(host, netId, addrList); in HWTEST_F()
H A Dnet_conn_service_test.cpp445 std::vector<INetAddr> addrList; in HWTEST_F() local
446 auto ret = NetConnService::GetInstance()->GetAddressesByName(TEST_HOST, TEST_NETID, addrList); in HWTEST_F()
/foundation/communication/netmanager_base/services/netconnmanager/include/
H A Dnet_conn_service.h253 int32_t GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) override;
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/proxy/
H A Dnet_conn_service_proxy.cpp977 int32_t NetConnServiceProxy::GetAddressesByName(const std::string &host, int32_t netId, std::vector<INetAddr> &addrList) in GetAddressesByName() argument
1012 addrList.push_back(*netaddr_ptr); in GetAddressesByName()

Completed in 31 milliseconds