Home
last modified time | relevance | path

Searched refs:GetFrameSubType (Results 1 – 9 of 9) sorted by relevance

/linux-4.1.27/drivers/staging/rtl8712/
Drtl871x_recv.c394 if ((GetFrameSubType(ptr)) == WIFI_DATA_NULL) in ap2sta_data_frame()
398 if ((GetFrameSubType(ptr) & WIFI_QOS_DATA_TYPE) == in ap2sta_data_frame()
400 if (GetFrameSubType(ptr) & (BIT(4) | BIT(5) | BIT(6))) in ap2sta_data_frame()
573 subtype = GetFrameSubType(ptr); /*bit(7)~bit(2)*/ in r8712_validate_recv_frame()
Dwifi.h251 #define GetFrameSubType(pbuf) (cpu_to_le16(*(unsigned short *)(pbuf)) & \ macro
Drtl871x_security.c1046 uint frsubtype = GetFrameSubType(pframe); in aes_cipher()
1217 uint frsubtype = GetFrameSubType(pframe); in aes_decipher()
/linux-4.1.27/drivers/staging/rtl8188eu/core/
Drtw_recv.c866 if (GetFrameSubType(ptr) & BIT(6)) { in ap2sta_data_frame()
944 if ((GetFrameSubType(ptr) & WIFI_QOS_DATA_TYPE) == WIFI_QOS_DATA_TYPE) { in sta2ap_data_frame()
948 if (GetFrameSubType(ptr) & BIT(6)) { in sta2ap_data_frame()
988 if (GetFrameSubType(pframe) == WIFI_PSPOLL) { in validate_recv_ctrl_frame()
1118 if (GetFrameSubType(precv_frame->rx_data) == WIFI_BEACON) { in validate_recv_mgnt_frame()
1120 } else if (GetFrameSubType(precv_frame->rx_data) == WIFI_PROBEREQ) { in validate_recv_mgnt_frame()
1122 } else if (GetFrameSubType(precv_frame->rx_data) == WIFI_PROBERSP) { in validate_recv_mgnt_frame()
1289 subtype = GetFrameSubType(ptr); /* bit(7)~bit(2) */ in validate_recv_frame()
Drtw_security.c1080 uint frsubtype = GetFrameSubType(pframe); in aes_cipher()
1279 uint frsubtype = GetFrameSubType(pframe); in aes_decipher()
Drtw_mlme_ext.c442 GetFrameType(pframe), GetFrameSubType(pframe))); in mgt_dispatcher()
456 index = GetFrameSubType(pframe) >> 4; in mgt_dispatcher()
478 switch (GetFrameSubType(pframe)) { in mgt_dispatcher()
922 frame_type = GetFrameSubType(pframe); in OnAssocReq()
3746 subtype = GetFrameSubType(pframe); in collect_bss_info()
Drtw_wlan_util.c910 subtype = GetFrameSubType(pframe) >> 4; in rtw_check_bcn_info()
/linux-4.1.27/drivers/staging/rtl8188eu/hal/
Drtl8188e_rxdesc.c172 (GetFrameSubType(wlanhdr) == WIFI_BEACON); in update_recvframe_phyinfo_88e()
/linux-4.1.27/drivers/staging/rtl8188eu/include/
Dwifi.h310 #define GetFrameSubType(pbuf) (le16_to_cpu(*(__le16 *)(pbuf)) & (BIT(7) |\ macro