Home
last modified time | relevance | path

Searched refs:netList (Results 1 - 12 of 12) sorted by relevance

/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_manager_test/
H A Dnet_conn_manager_test.cpp54 void LogCapabilities(const std::list<sptr<NetHandle>> &netList) const;
136 void NetConnManagerTest::LogCapabilities(const std::list<sptr<NetHandle>> &netList) const in LogCapabilities()
138 for (auto it : netList) { in LogCapabilities()
349 std::list<sptr<NetHandle>> netList; in HWTEST_F() local
350 int32_t result = client.GetAllNets(netList); in HWTEST_F()
351 std::cout << "netIdList size:" << netList.size() << std::endl; in HWTEST_F()
357 for (sptr<NetHandle> netHandle : netList) { in HWTEST_F()
502 std::list<sptr<NetHandle>> netList; in HWTEST_F() local
503 result = NetConnClient::GetInstance().GetAllNets(netList); in HWTEST_F()
505 for (auto it : netList) { in HWTEST_F()
527 std::list<sptr<NetHandle>> netList; HWTEST_F() local
579 CheckNetListRemainWhenConnected(std::list<sptr<NetHandle>> &netList) CheckNetListRemainWhenConnected() argument
587 CheckNetListIncreaseWhenConnected(sptr<NetLinkInfo> &netLinkInfo, std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) CheckNetListIncreaseWhenConnected() argument
598 CheckNetListWhenDisconnected(sptr<NetSupplierInfo> &netSupplierInfo, std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) CheckNetListWhenDisconnected() argument
610 RollbackForNetConnManager(sptr<NetSupplierInfo> &netSupplierInfo, sptr<NetLinkInfo> &netLinkInfo, std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) RollbackForNetConnManager() argument
621 CheckNetListWhenUnregistered(std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) CheckNetListWhenUnregistered() argument
645 std::list<sptr<NetHandle>> netList; HWTEST_F() local
816 std::list<sptr<NetHandle>> netList; HWTEST_F() local
[all...]
/foundation/communication/netmanager_ext/test/vpnmanager/unittest/conn_vpn_manager_test/
H A Dnet_conn_manager_test.cpp54 void LogCapabilities(const std::list<sptr<NetHandle>> &netList) const;
136 void NetConnManagerTest::LogCapabilities(const std::list<sptr<NetHandle>> &netList) const in LogCapabilities()
138 for (auto it : netList) { in LogCapabilities()
349 std::list<sptr<NetHandle>> netList; in HWTEST_F() local
350 int32_t result = client.GetAllNets(netList); in HWTEST_F()
351 std::cout << "netIdList size:" << netList.size() << std::endl; in HWTEST_F()
357 for (sptr<NetHandle> netHandle : netList) { in HWTEST_F()
502 std::list<sptr<NetHandle>> netList; in HWTEST_F() local
503 result = NetConnClient::GetInstance().GetAllNets(netList); in HWTEST_F()
505 for (auto it : netList) { in HWTEST_F()
527 std::list<sptr<NetHandle>> netList; HWTEST_F() local
579 CheckNetListRemainWhenConnected(std::list<sptr<NetHandle>> &netList) CheckNetListRemainWhenConnected() argument
587 CheckNetListIncreaseWhenConnected(sptr<NetLinkInfo> &netLinkInfo, std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) CheckNetListIncreaseWhenConnected() argument
598 CheckNetListWhenDisconnected(sptr<NetSupplierInfo> &netSupplierInfo, std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) CheckNetListWhenDisconnected() argument
610 RollbackForNetConnManager(sptr<NetSupplierInfo> &netSupplierInfo, sptr<NetLinkInfo> &netLinkInfo, std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) RollbackForNetConnManager() argument
621 CheckNetListWhenUnregistered(std::list<sptr<NetHandle>> &netList, uint32_t &supplierId, size_t &originNetSize) CheckNetListWhenUnregistered() argument
645 std::list<sptr<NetHandle>> netList; HWTEST_F() local
816 std::list<sptr<NetHandle>> netList; HWTEST_F() local
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_self_cure/
H A Dself_cure_utils.cpp82 std::list<sptr<NetHandle>> netList; in GetWifiNetId() local
83 int32_t ret = NetConnClient::GetInstance().GetAllNets(netList); in GetWifiNetId()
88 for (auto iter : netList) { in GetWifiNetId()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_common/
H A Dwifi_net_observer.cpp96 std::list<sptr<NetHandle>> netList; in GetWifiNetworkHandle() local
97 int32_t ret = NetConnClient::GetInstance().GetAllNets(netList); in GetWifiNetworkHandle()
102 for (auto iter : netList) { in GetWifiNetworkHandle()
/foundation/communication/wifi/wifi/test/fuzztest/fuzz_common_func/
H A Dmock_netconn_client.h42 int32_t GetAllNets(std::list<sptr<NetHandle>> &netList);
H A Dmock_netconn_client.cpp58 int32_t NetConnClient::GetAllNets(std::list<sptr<NetHandle>> &netList) in GetAllNets() argument
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/Mock/
H A Dnet_conn_client.h43 int32_t GetAllNets(std::list<sptr<NetHandle>> &netList);
H A Dnet_conn_client.cpp58 int32_t NetConnClient::GetAllNets(std::list<sptr<NetHandle>> &netList) in GetAllNets() argument
/foundation/communication/netmanager_base/frameworks/cj/connection/src/
H A Dnet_connection_ffi.cpp330 std::list<sptr<NetHandle>> netList; in CJ_GetAllNets() local
331 auto code = NetConnClient::GetInstance().GetAllNets(netList); in CJ_GetAllNets()
337 auto listSize = netList.size(); in CJ_GetAllNets()
346 for (auto it = netList.begin(); it != netList.end(); ++it) { in CJ_GetAllNets()
/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/
H A Dnet_conn_client.h212 * @param netList a list of network
217 int32_t GetAllNets(std::list<sptr<NetHandle>> &netList);
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dnet_conn_client.cpp359 int32_t NetConnClient::GetAllNets(std::list<sptr<NetHandle>> &netList) in GetAllNets() argument
376 netList.push_back(netHandle); in GetAllNets()
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_multi_test/
H A Dnet_conn_client_test.cpp1068 std::list<sptr<NetHandle>> netList; in HWTEST_F() local
1069 int32_t ret = DelayedSingleton<NetConnClient>::GetInstance()->GetAllNets(netList); in HWTEST_F()

Completed in 11 milliseconds