Home
last modified time | relevance | path

Searched refs:macAddrList (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/communication/netmanager_ext/services/ethernetmanager/src/stub/
H A Dethernet_service_stub.cpp89 std::vector<MacAddressInfo> macAddrList; in OnGetMacAddress() local
90 int32_t ret = GetMacAddress(macAddrList); in OnGetMacAddress()
95 if (macAddrList.size() > MAX_SIZE) { in OnGetMacAddress()
102 if (!reply.WriteUint32(macAddrList.size())) { in OnGetMacAddress()
106 for (auto macAddrInfo : macAddrList) { in OnGetMacAddress()
/ohos5.0/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/
H A Dethernet_client.cpp43 int32_t EthernetClient::GetMacAddress(std::vector<MacAddressInfo> &macAddrList) in GetMacAddress() argument
50 return proxy->GetMacAddress(macAddrList); in GetMacAddress()
/ohos5.0/foundation/communication/netmanager_ext/interfaces/innerkits/ethernetclient/include/proxy/
H A Di_ethernet_service.h38 virtual int32_t GetMacAddress(std::vector<MacAddressInfo> &macAddrList) = 0;
H A Dethernet_service_proxy.h32 int32_t GetMacAddress(std::vector<MacAddressInfo> &macAddrList) override;
/ohos5.0/foundation/communication/netmanager_ext/interfaces/innerkits/ethernetclient/include/
H A Dethernet_client.h40 int32_t GetMacAddress(std::vector<MacAddressInfo> &macAddrList);
/ohos5.0/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/proxy/
H A Dethernet_service_proxy.cpp47 int32_t EthernetServiceProxy::GetMacAddress(std::vector<MacAddressInfo> &macAddrList) in GetMacAddress() argument
81 macAddrList.push_back(*macAddrInfo); in GetMacAddress()
/ohos5.0/foundation/communication/netmanager_ext/services/ethernetmanager/src/
H A Dethernet_service.cpp200 int32_t EthernetService::GetMacAddress(std::vector<MacAddressInfo> &macAddrList) in GetMacAddress() argument
208 return ethManagement_.GetMacAddress(macAddrList); in GetMacAddress()
H A Dethernet_management.cpp186 int32_t EthernetManagement::GetMacAddress(std::vector<MacAddressInfo> &macAddrList) in GetMacAddress() argument
204 macAddrList.push_back(macAddressInfo); in GetMacAddress()
207 if (macAddrList.size() == 0) { in GetMacAddress()
/ohos5.0/foundation/communication/netmanager_ext/services/ethernetmanager/include/
H A Dethernet_management.h68 int32_t GetMacAddress(std::vector<MacAddressInfo> &macAddrList);
H A Dethernet_service.h69 int32_t GetMacAddress(std::vector<MacAddressInfo> &macAddrList) override;
/ohos5.0/foundation/communication/netmanager_ext/test/ethernetmanager/unittest/ethernet_manager_test/
H A Dethernet_service_test.cpp212 std::vector<MacAddressInfo> macAddrList; variable
213 int ret = ethernetService.GetMacAddress(macAddrList);