Searched refs:scanResultCapacity (Results 1 - 4 of 4) sorted by relevance
/drivers/peripheral/wlan/client/src/sbuf/ |
H A D | sbuf_event_adapter.c | 214 if (g_scanResults.num == g_scanResults.scanResultCapacity) { in WifiEventScanResultProcess() 215 g_scanResults.scanResultCapacity += INIT_SCAN_RES_NUM; in WifiEventScanResultProcess() 217 newScanResult = (WifiScanResult *)OsalMemCalloc(sizeof(WifiScanResult) * (g_scanResults.scanResultCapacity)); in WifiEventScanResultProcess() 221 g_scanResults.scanResultCapacity -= INIT_SCAN_RES_NUM; in WifiEventScanResultProcess() 224 if (memcpy_s((void *)newScanResult, sizeof(WifiScanResult) * (g_scanResults.scanResultCapacity), in WifiEventScanResultProcess()
|
/drivers/peripheral/wlan/client/src/netlink/ |
H A D | netlink_event_adapter.c | 249 HILOG_DEBUG(LOG_CORE, "%{public}s, line:%{public}d num:%{public}u scanResultCapacity:%{public}u", __FUNCTION__,
in WifiGetScanResultHandler() 250 __LINE__, scanResults->num, scanResults->scanResultCapacity);
in WifiGetScanResultHandler() 252 if (scanResults->num == scanResults->scanResultCapacity) {
in WifiGetScanResultHandler() 253 scanResults->scanResultCapacity += INIT_SCAN_RES_NUM;
in WifiGetScanResultHandler() 255 newScanResult = (WifiScanResult *)OsalMemCalloc(sizeof(WifiScanResult) * (scanResults->scanResultCapacity));
in WifiGetScanResultHandler() 258 scanResults->scanResultCapacity -= INIT_SCAN_RES_NUM;
in WifiGetScanResultHandler() 262 if (memcpy_s((void *)newScanResult, sizeof(WifiScanResult) * (scanResults->scanResultCapacity),
in WifiGetScanResultHandler()
|
/drivers/peripheral/wlan/client/src/ |
H A D | wifi_driver_client.c | 289 scanResults->scanResultCapacity = INIT_SCAN_RES_NUM; in InitScanResults() 291 scanResults->scanResult = (WifiScanResult *)OsalMemCalloc(sizeof(WifiScanResult) * scanResults->scanResultCapacity); in InitScanResults()
|
/drivers/peripheral/wlan/client/include/ |
H A D | wifi_driver_client.h | 165 uint32_t scanResultCapacity; member
|
Completed in 4 milliseconds