Searched refs:extraIes (Results 1 - 5 of 5) sorted by relevance
/drivers/peripheral/wlan/hdi_service/service_common/ |
H A D | wlan_common_cmd.c | 1222 if ((scan->extraIes != NULL) && (scan->extraIesLen != 0)) {
in WLanFillScanData() 1223 wifiScan->extraIes = (uint8_t *)OsalMemCalloc(sizeof(uint8_t) * scan->extraIesLen);
in WLanFillScanData() 1224 if (wifiScan->extraIes != NULL) {
in WLanFillScanData() 1225 if (memcpy_s(wifiScan->extraIes, sizeof(uint8_t) * (scan->extraIesLen), scan->extraIes,
in WLanFillScanData() 1227 HDF_LOGE("%{public}s fail : memcpy_s extraIes fail!", __func__);
in WLanFillScanData() 1228 OsalMemFree(wifiScan->extraIes);
in WLanFillScanData() 1258 if (dataBlock->extraIes != NULL) {
in WifiScanFree() 1259 OsalMemFree(dataBlock->extraIes);
in WifiScanFree() 1260 dataBlock->extraIes in WifiScanFree() [all...] |
/drivers/hdf_core/framework/model/network/wifi/include/ |
H A D | hdf_wifi_cmd.h | 343 uint8_t *extraIes; member
|
/drivers/peripheral/wlan/client/include/ |
H A D | wifi_driver_client.h | 478 uint8_t *extraIes; member
|
/drivers/peripheral/wlan/client/src/sbuf/ |
H A D | sbuf_cmd_adapter.c | 835 isSerializeFailed = isSerializeFailed || !HdfSbufWriteBuffer(data, scan->extraIes, scan->extraIesLen); in WifiCmdScan()
|
/drivers/peripheral/wlan/client/src/netlink/ |
H A D | netlink_cmd_adapter.c | 1688 if (scan->extraIes) { in CmdScanPutMsg() 1689 if (nla_put(msg, NL80211_ATTR_IE, scan->extraIesLen, scan->extraIes) != RET_CODE_SUCCESS) { in CmdScanPutMsg() 1690 HILOG_ERROR(LOG_CORE, "%s: nla_put extraIes failed", __FUNCTION__); in CmdScanPutMsg()
|
Completed in 12 milliseconds