Searched refs:deviceInfos (Results 1 – 11 of 11) sorted by relevance
/drivers/hdf_core/adapter/uhdf2/hdi/src/ |
D | idevmgr_client.cpp | 51 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/ |
D | idevmgr_hdi.h | 110 virtual int32_t ListAllDevice(std::vector<HdiDevHostInfo> &deviceInfos) = 0;
|
/drivers/peripheral/wlan/hdi_service/service_common/ |
D | wlan_common_cmd.c | 1011 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/ |
D | driver_ext_mgr.cpp | 83 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/ |
D | hdf_dbg.cpp | 168 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/ |
D | sbuf_cmd_adapter.c | 726 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/ |
D | WlanTypes.idl | 134 struct HdfNetDeviceInfo[] deviceInfos;
|
/drivers/hdf_core/adapter/uhdf2/hdi/test/servmgr/ |
D | service_manager_hdi_test.cpp | 751 std::vector<HdiDevHostInfo> deviceInfos; variable 752 int ret = devmgr->ListAllDevice(deviceInfos); 754 ASSERT_TRUE(deviceInfos.size() != 0);
|
/drivers/peripheral/wlan/client/include/ |
D | wifi_driver_client.h | 245 struct NetDeviceInfo deviceInfos[MAX_NETDEVICE_COUNT]; member
|
/drivers/interface/wlan/v1_1/ |
D | WlanTypes.idl | 134 struct HdfNetDeviceInfo[] deviceInfos;
|
/drivers/peripheral/wlan/client/src/netlink/ |
D | netlink_cmd_adapter.c | 1332 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()
|