/drivers/peripheral/wlan/hal/src/ |
H A D | wifi_hal.c | 368 static int32_t RegisterActionFrameReceiverInner(const char *ifName, const uint8_t *match, uint32_t matchLen) in RegisterActionFrameReceiverInner() argument 370 if (ifName == NULL || match == NULL || matchLen == 0) { in RegisterActionFrameReceiverInner() 374 return WifiRegisterActionFrameReceiver(ifName, match, matchLen); in RegisterActionFrameReceiverInner() 617 static int32_t RegisterActionFrameReceiver(const char *ifName, const uint8_t *match, uint32_t matchLen) in RegisterActionFrameReceiver() argument 621 int32_t ret = RegisterActionFrameReceiverInner(ifName, match, matchLen); in RegisterActionFrameReceiver()
|
/drivers/peripheral/wlan/interfaces/include/ |
H A D | wifi_hal.h | 373 * @param matchLen Indicates the matching data length. 380 int32_t (*registerActionFrameReceiver)(const char *ifName, const uint8_t *match, uint32_t matchLen);
|
/drivers/peripheral/wlan/hdi_service/service_common/ |
H A D | wlan_common_cmd.h | 73 const uint8_t *match, uint32_t matchLen);
|
H A D | wlan_common_cmd.c | 1626 const uint8_t *match, uint32_t matchLen)
in WlanInterfaceRegisterActionFrameReceiver() 1630 if (ifName == NULL || match == NULL || matchLen == 0) {
in WlanInterfaceRegisterActionFrameReceiver() 1638 ret = g_wifi->registerActionFrameReceiver(ifName, match, matchLen);
in WlanInterfaceRegisterActionFrameReceiver() 1625 WlanInterfaceRegisterActionFrameReceiver(struct IWlanInterface *self, const char *ifName, const uint8_t *match, uint32_t matchLen) WlanInterfaceRegisterActionFrameReceiver() argument
|
/drivers/peripheral/wlan/test/hdi_service/ |
H A D | wlan_hdi_direct_test.cpp | 721 uint32_t matchLen = DEFAULT_COMBO_SIZE;
in HWTEST_F() local 724 rc = g_wlanObj->RegisterActionFrameReceiver(g_wlanObj, nullptr, match, matchLen);
in HWTEST_F() 726 rc = g_wlanObj->RegisterActionFrameReceiver(g_wlanObj, ifName, nullptr, matchLen);
in HWTEST_F() 730 rc = g_wlanObj->RegisterActionFrameReceiver(g_wlanObj, ifName, match, matchLen);
in HWTEST_F()
|
/drivers/peripheral/wlan/test/unittest/client/ |
H A D | hdf_client_test.cpp | 536 uint32_t matchLen = RESET_TIME; 538 ret = WifiRegisterActionFrameReceiver(nullptr, &mastch, matchLen); 540 ret = WifiRegisterActionFrameReceiver(ifNameInvalid, 0, matchLen); 544 ret = WifiRegisterActionFrameReceiver(ifNameInvalid, &mastch, matchLen);
|
/drivers/peripheral/wlan/client/include/ |
H A D | wifi_driver_client.h | 366 int32_t WifiRegisterActionFrameReceiver(const char *ifName, const uint8_t *match, uint32_t matchLen);
|
/drivers/peripheral/wlan/test/unittest/hal/ |
H A D | wifi_hal_test.cpp | 2245 uint32_t matchLen = IFNAME_MAX_NUM; 2248 int32_t rc = g_wifi->registerActionFrameReceiver(nullptr, match, matchLen); 2250 rc = g_wifi->registerActionFrameReceiver(ifName, nullptr, matchLen); 2254 g_wifi->registerActionFrameReceiver(ifName, match, matchLen);
|
/drivers/peripheral/wlan/client/src/sbuf/ |
H A D | sbuf_cmd_adapter.c | 1165 int32_t WifiRegisterActionFrameReceiver(const char *ifName, const uint8_t *match, uint32_t matchLen) in WifiRegisterActionFrameReceiver() argument 1169 (void)matchLen; in WifiRegisterActionFrameReceiver()
|
/drivers/peripheral/wlan/client/src/netlink/ |
H A D | netlink_cmd_adapter.c | 3347 int32_t WifiRegisterActionFrameReceiver(const char *ifName, const uint8_t *match, uint32_t matchLen) in WifiRegisterActionFrameReceiver() argument 3352 if (ifName == NULL || match == NULL || matchLen == 0) { in WifiRegisterActionFrameReceiver() 3375 if (nla_put(msg, NL80211_ATTR_FRAME_MATCH, matchLen, match) != RET_CODE_SUCCESS) { in WifiRegisterActionFrameReceiver()
|