Home
last modified time | relevance | path

Searched refs:category (Results 1 – 13 of 13) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/components/srtm/srtm/
Dsrtm_message.c92 uint8_t category, in SRTM_CommMessage_Create() argument
110 head->category = category; in SRTM_CommMessage_Create()
195 … srtm_channel_t channel, uint8_t category, uint16_t version, uint8_t command, uint16_t payloadLen) in SRTM_Request_Create() argument
197 …return SRTM_CommMessage_Create(SRTM_MessageTypeRequest, SRTM_MessageDirectTx, channel, category, v… in SRTM_Request_Create()
214 … srtm_channel_t channel, uint8_t category, uint16_t version, uint8_t command, uint16_t payloadLen) in SRTM_Response_Create() argument
216 …Message_Create(SRTM_MessageTypeResponse, SRTM_MessageDirectTx, channel, category, version, command, in SRTM_Response_Create()
226 … srtm_channel_t channel, uint8_t category, uint16_t version, uint8_t command, uint16_t payloadLen) in SRTM_Notification_Create() argument
228 …_CommMessage_Create(SRTM_MessageTypeNotification, SRTM_MessageDirectTx, channel, category, version, in SRTM_Notification_Create()
269 return head->category; in SRTM_CommMessage_GetCategory()
Dsrtm_dispatcher.c51 … head->category, head->majorVersion, head->minorVersion, head->type, head->command, in SRTM_DumpMessage()
492 SRTM_DEBUG_MESSAGE(SRTM_DEBUG_VERBOSE_INFO, "%s: %d\r\n", __func__, service->category); in SRTM_Dispatcher_RegisterService()
514 SRTM_DEBUG_MESSAGE(SRTM_DEBUG_VERBOSE_INFO, "%s: %d\r\n", __func__, service->category); in SRTM_Dispatcher_UnregisterService()
783 uint8_t category; in SRTM_Dispatcher_CallService() local
788 category = SRTM_CommMessage_GetCategory(msg); in SRTM_Dispatcher_CallService()
794 if (service->category == category) in SRTM_Dispatcher_CallService()
816 uint8_t category; in SRTM_Dispatcher_HandleResponse() local
822 category = SRTM_CommMessage_GetCategory(msg); in SRTM_Dispatcher_HandleResponse()
829 …if (SRTM_CommMessage_GetCategory(req) == category && SRTM_CommMessage_GetCommand(req) == command && in SRTM_Dispatcher_HandleResponse()
Dsrtm_service_struct.h25 uint8_t category; member
Dsrtm_message_struct.h108 uint8_t category;
/hal_nxp-latest/mcux/mcux-sdk/components/pf1550/
Dfsl_pf1550.c419 uint8_t category = 0U; in PF1550_GetInterruptCategory() local
424 (void)PF1550_ReadReg(handle, PF1550_INT_CATEGORY, &category); in PF1550_GetInterruptCategory()
426 return category; in PF1550_GetInterruptCategory()
429 void PF1550_EnableInterrupts(pf1550_handle_t *handle, pf1550_interrupt_category_t category, uint32_… in PF1550_EnableInterrupts() argument
433 switch (category) in PF1550_EnableInterrupts()
475 void PF1550_DisableInterrupts(pf1550_handle_t *handle, pf1550_interrupt_category_t category, uint32… in PF1550_DisableInterrupts() argument
479 switch (category) in PF1550_DisableInterrupts()
520 uint32_t PF1550_GetInterruptStatus(pf1550_handle_t *handle, pf1550_interrupt_category_t category) in PF1550_GetInterruptStatus() argument
527 switch (category) in PF1550_GetInterruptStatus()
581 void PF1550_ClearInterruptStatus(pf1550_handle_t *handle, pf1550_interrupt_category_t category, uin… in PF1550_ClearInterruptStatus() argument
[all …]
Dfsl_pf1550.h572 void PF1550_EnableInterrupts(pf1550_handle_t *handle, pf1550_interrupt_category_t category, uint32_…
591 void PF1550_DisableInterrupts(pf1550_handle_t *handle, pf1550_interrupt_category_t category, uint32…
622 uint32_t PF1550_GetInterruptStatus(pf1550_handle_t *handle, pf1550_interrupt_category_t category);
640 void PF1550_ClearInterruptStatus(pf1550_handle_t *handle, pf1550_interrupt_category_t category, uin…
/hal_nxp-latest/mcux/mcux-sdk/components/srtm/include/
Dsrtm_message.h104 … srtm_channel_t channel, uint8_t category, uint16_t version, uint8_t command, uint16_t payloadLen);
134 … srtm_channel_t channel, uint8_t category, uint16_t version, uint8_t command, uint16_t payloadLen);
154 … srtm_channel_t channel, uint8_t category, uint16_t version, uint8_t command, uint16_t payloadLen);
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/
Dmlan_action.c328 IEEEtypes_ActionCategory_e category = (IEEEtypes_ActionCategory_e)0; in wlan_process_mgmt_action() local
332 category = (IEEEtypes_ActionCategory_e)(*(payload + sizeof(wlan_802_11_header))); in wlan_process_mgmt_action()
334 switch (category) in wlan_process_mgmt_action()
347 wifi_d("Action: Unknown request: %u", category); in wlan_process_mgmt_action()
Dmlan_misc.c346 t_u8 category = 0; in wlan_bypass_802dot11_mgmt_pkt() local
354 category = *((t_u8 *)pieee_pkt_hdr + sizeof(wlan_802_11_header)); in wlan_bypass_802dot11_mgmt_pkt()
377 if (category == IEEE_MGMT_ACTION_CATEGORY_BLOCK_ACK) in wlan_bypass_802dot11_mgmt_pkt()
379 PRINTM(MINFO, "Dropping mgmt frame for category %d.\n", category); in wlan_bypass_802dot11_mgmt_pkt()
384 if (category != (t_u8)IEEE_MGMT_ACTION_CATEGORY_RADIO_RSRC && in wlan_bypass_802dot11_mgmt_pkt()
385 category != (t_u8)IEEE_MGMT_ACTION_CATEGORY_WNM && in wlan_bypass_802dot11_mgmt_pkt()
386 category != (t_u8)IEEE_MGMT_ACTION_CATEGORY_UNPROTECT_WNM) in wlan_bypass_802dot11_mgmt_pkt()
388 PRINTM(MINFO, "Dropping mgmt frame for host unsupported category %d.\n", category); in wlan_bypass_802dot11_mgmt_pkt()
Dwifi.c2806 t_u8 category = 0; in wlan_process_802dot11_mgmt_pkt2() local
3004 category = *(payload + sizeof(wlan_802_11_header)); in wlan_process_802dot11_mgmt_pkt2()
3007 …if (category != IEEE_MGMT_ACTION_CATEGORY_WMM_TSPEC && category != IEEE_MGMT_ACTION_CATEGORY_FST && in wlan_process_802dot11_mgmt_pkt2()
3008category != IEEE_MGMT_ACTION_CATEGORY_PUBLIC && category != IEEE_MGMT_ACTION_CATEGORY_RADIO_RSRC && in wlan_process_802dot11_mgmt_pkt2()
3009category != IEEE_MGMT_ACTION_CATEGORY_PROTECTED_DUAL && category != IEEE_MGMT_ACTION_CATEGORY_QOS … in wlan_process_802dot11_mgmt_pkt2()
3010 category != IEEE_MGMT_ACTION_CATEGORY_FAST_BSS_TRANS && in wlan_process_802dot11_mgmt_pkt2()
3011category != IEEE_MGMT_ACTION_CATEGORY_SA_QUERY && category != IEEE_MGMT_ACTION_CATEGORY_AV_STREAMI… in wlan_process_802dot11_mgmt_pkt2()
3012 category != IEEE_MGMT_ACTION_CATEGORY_WNM) in wlan_process_802dot11_mgmt_pkt2()
3014 wifi_d("Drop action frame: category = %d, action_code=%d", category, action_code); in wlan_process_802dot11_mgmt_pkt2()
3018 if (category == IEEE_MGMT_ACTION_CATEGORY_BLOCK_ACK) in wlan_process_802dot11_mgmt_pkt2()
[all …]
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/incl/
Dmlan_ieee.h299 t_u8 category;
316 t_u8 category;
1042 IEEEtypes_ActionCategory_e category;
1095 IEEEtypes_ActionCategory_e category;
/hal_nxp-latest/mcux/mcux-sdk/components/srtm/services/
Dsrtm_i2c_service.c153 handle->service.category = SRTM_I2C_CATEGORY; in SRTM_I2CService_Create()
Dsrtm_audio_service.c813 handle->service.category = SRTM_AUDIO_CATEGORY; in SRTM_AudioService_Create()