Home
last modified time | relevance | path

Searched refs:MAX_ASSOC_STA_NUM (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/drivers/peripheral/wlan/client/include/
H A Dwifi_driver_client.h240 #define MAX_ASSOC_STA_NUM 8 macro
248 struct AssocStaInfo infos[MAX_ASSOC_STA_NUM];
/ohos5.0/drivers/peripheral/wlan/test/unittest/hal/
H A Dwifi_hal_test.cpp1325 struct StaInfo staInfo[MAX_ASSOC_STA_NUM];
1326 …(void)memset_s(staInfo, sizeof(StaInfo) * MAX_ASSOC_STA_NUM, 0, sizeof(StaInfo) * MAX_ASSOC_STA_NU…
1332 ret = apFeature->getAssociatedStas(nullptr, staInfo, MAX_ASSOC_STA_NUM, &num);
1334 ret = apFeature->getAssociatedStas(apFeature, nullptr, MAX_ASSOC_STA_NUM, &num);
1338 ret = apFeature->getAssociatedStas(apFeature, staInfo, MAX_ASSOC_STA_NUM, nullptr);
1340 ret = apFeature->getAssociatedStas(apFeature, staInfo, MAX_ASSOC_STA_NUM, &num);
/ohos5.0/drivers/peripheral/wlan/client/src/sbuf/
H A Dsbuf_cmd_adapter.c133 if (result->num > MAX_ASSOC_STA_NUM) { in ParserAssociatedStas()