Home
last modified time | relevance | path

Searched refs:scanResultCapacity (Results 1 - 4 of 4) sorted by relevance

/drivers/peripheral/wlan/client/src/sbuf/
H A Dsbuf_event_adapter.c214 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 Dnetlink_event_adapter.c249 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 Dwifi_driver_client.c289 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 Dwifi_driver_client.h165 uint32_t scanResultCapacity; member

Completed in 4 milliseconds