Home
last modified time | relevance | path

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

/drivers/hdf_core/adapter/uhdf2/hdi/src/
Didevmgr_client.cpp51 int32_t ListAllDevice(std::vector<HdiDevHostInfo> &deviceInfos) override;
149 int32_t DeviceManagerProxy::ListAllDevice(std::vector<HdiDevHostInfo> &deviceInfos) in ListAllDevice() argument
167 if (!HdfDevMgrDbgFillDeviceInfo(deviceInfos, reply)) { in ListAllDevice()
/drivers/hdf_core/interfaces/inner_api/hdi/
Didevmgr_hdi.h110 virtual int32_t ListAllDevice(std::vector<HdiDevHostInfo> &deviceInfos) = 0;
/drivers/peripheral/wlan/hdi_service/service_common/
Dwlan_common_cmd.c1011 netDeviceInfoResult->deviceInfos = in WlanInterfaceGetNetDevInfo()
1013 if (netDeviceInfoResult->deviceInfos == NULL) { in WlanInterfaceGetNetDevInfo()
1020 netDeviceInfoResult->deviceInfos[i].index = netDeviceInfo->deviceInfos[i].index; in WlanInterfaceGetNetDevInfo()
1021 netDeviceInfoResult->deviceInfos[i].iftype = netDeviceInfo->deviceInfos[i].iftype; in WlanInterfaceGetNetDevInfo()
1022 netDeviceInfoResult->deviceInfos[i].ifName = (char *)OsalMemCalloc(sizeof(char) * IFNAMSIZ); in WlanInterfaceGetNetDevInfo()
1023 if (netDeviceInfoResult->deviceInfos != NULL) { in WlanInterfaceGetNetDevInfo()
1024 …if (memcpy_s(netDeviceInfoResult->deviceInfos[i].ifName, IFNAMSIZ, netDeviceInfo->deviceInfos[i].i… in WlanInterfaceGetNetDevInfo()
1026 OsalMemFree(netDeviceInfoResult->deviceInfos[i].ifName); in WlanInterfaceGetNetDevInfo()
1029 netDeviceInfoResult->deviceInfos[i].ifNameLen = IFNAMSIZ; in WlanInterfaceGetNetDevInfo()
1031 …netDeviceInfoResult->deviceInfos[i].mac = (uint8_t *)OsalMemCalloc(sizeof(uint8_t) * ETH_ADDR_LEN); in WlanInterfaceGetNetDevInfo()
[all …]
/drivers/external_device_manager/services/native/driver_extension_manager/src/
Ddriver_ext_mgr.cpp83 std::vector<std::shared_ptr<DeviceInfo>> deviceInfos = in QueryDevice() local
85 for (const auto &deviceInfo : deviceInfos) { in QueryDevice()
/drivers/hdf_core/framework/tools/hdf_dbg/
Dhdf_dbg.cpp168 static void PrintALLDeviceInfoUser(std::vector<HdiDevHostInfo> &deviceInfos) in PrintALLDeviceInfoUser() argument
185 for (auto &info : deviceInfos) { in PrintALLDeviceInfoUser()
430 std::vector<HdiDevHostInfo> deviceInfos; in GetAllDeviceUserSpace() local
431 (void)devmgr->ListAllDevice(deviceInfos); in GetAllDeviceUserSpace()
432 PrintALLDeviceInfoUser(deviceInfos); in GetAllDeviceUserSpace()
/drivers/peripheral/wlan/client/src/sbuf/
Dsbuf_cmd_adapter.c726 if (!HdfSbufReadUint32(reply, &(netDeviceInfoResult->deviceInfos[i].index)) || in GetNetDeviceInfo()
728 !HdfSbufReadUint8(reply, &(netDeviceInfoResult->deviceInfos[i].iftype)) || in GetNetDeviceInfo()
734 … if (memcpy_s(netDeviceInfoResult->deviceInfos[i].ifName, ifNameSize, ifName, ifNameSize) != EOK) { in GetNetDeviceInfo()
739 … if (memcpy_s(netDeviceInfoResult->deviceInfos[i].mac, macSize, replayData, macSize) != EOK) { in GetNetDeviceInfo()
/drivers/interface/wlan/v1_0/
DWlanTypes.idl134 struct HdfNetDeviceInfo[] deviceInfos;
/drivers/hdf_core/adapter/uhdf2/hdi/test/servmgr/
Dservice_manager_hdi_test.cpp751 std::vector<HdiDevHostInfo> deviceInfos; variable
752 int ret = devmgr->ListAllDevice(deviceInfos);
754 ASSERT_TRUE(deviceInfos.size() != 0);
/drivers/peripheral/wlan/client/include/
Dwifi_driver_client.h245 struct NetDeviceInfo deviceInfos[MAX_NETDEVICE_COUNT]; member
/drivers/interface/wlan/v1_1/
DWlanTypes.idl134 struct HdfNetDeviceInfo[] deviceInfos;
/drivers/peripheral/wlan/client/src/netlink/
Dnetlink_cmd_adapter.c1332 if (memset_s(&netDeviceInfoResult->deviceInfos[i], sizeof(struct NetDeviceInfo), 0, in GetNetDeviceInfo()
1337 netDeviceInfoResult->deviceInfos[i].index = i + 1; in GetNetDeviceInfo()
1338 if (strncpy_s(netDeviceInfoResult->deviceInfos[i].ifName, IFNAMSIZ, in GetNetDeviceInfo()
1343 ret = GetIftypeAndMac(&netDeviceInfoResult->deviceInfos[i]); in GetNetDeviceInfo()