Home
last modified time | relevance | path

Searched refs:matchLen (Results 1 - 10 of 10) sorted by relevance

/drivers/peripheral/wlan/hal/src/
H A Dwifi_hal.c368 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 Dwifi_hal.h373 * @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 Dwlan_common_cmd.h73 const uint8_t *match, uint32_t matchLen);
H A Dwlan_common_cmd.c1626 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 Dwlan_hdi_direct_test.cpp721 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 Dhdf_client_test.cpp536 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 Dwifi_driver_client.h366 int32_t WifiRegisterActionFrameReceiver(const char *ifName, const uint8_t *match, uint32_t matchLen);
/drivers/peripheral/wlan/test/unittest/hal/
H A Dwifi_hal_test.cpp2245 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 Dsbuf_cmd_adapter.c1165 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 Dnetlink_cmd_adapter.c3347 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()

Completed in 17 milliseconds