Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/staging/rtl8712/
Drtl871x_recv.c397 if ((GetFrameSubType(ptr)) == WIFI_DATA_NULL) in ap2sta_data_frame()
401 if ((GetFrameSubType(ptr) & WIFI_QOS_DATA_TYPE) == in ap2sta_data_frame()
403 if (GetFrameSubType(ptr) & (BIT(4) | BIT(5) | BIT(6))) in ap2sta_data_frame()
577 subtype = GetFrameSubType(ptr); /*bit(7)~bit(2)*/ in r8712_validate_recv_frame()
Dwifi.h242 #define GetFrameSubType(pbuf) (cpu_to_le16(*(unsigned short *)(pbuf)) & \ macro
Drtl871x_security.c1051 uint frsubtype = GetFrameSubType(pframe); in aes_cipher()
1224 uint frsubtype = GetFrameSubType(pframe); in aes_decipher()
/linux-4.4.14/drivers/staging/rtl8188eu/core/
Drtw_recv.c844 if (GetFrameSubType(ptr) & BIT(6)) { in ap2sta_data_frame()
920 if ((GetFrameSubType(ptr) & WIFI_QOS_DATA_TYPE) == WIFI_QOS_DATA_TYPE) { in sta2ap_data_frame()
924 if (GetFrameSubType(ptr) & BIT(6)) { in sta2ap_data_frame()
963 if (GetFrameSubType(pframe) == WIFI_PSPOLL) { in validate_recv_ctrl_frame()
1093 if (GetFrameSubType(precv_frame->rx_data) == WIFI_BEACON) { in validate_recv_mgnt_frame()
1095 } else if (GetFrameSubType(precv_frame->rx_data) == WIFI_PROBEREQ) { in validate_recv_mgnt_frame()
1097 } else if (GetFrameSubType(precv_frame->rx_data) == WIFI_PROBERSP) { in validate_recv_mgnt_frame()
1261 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.c2127 subtype = GetFrameSubType(pframe); in collect_bss_info()
3022 frame_type = GetFrameSubType(pframe); in OnAssocReq()
4205 (unsigned int)GetFrameSubType(pframe))); in mgt_dispatcher()
4221 index = GetFrameSubType(pframe) >> 4; in mgt_dispatcher()
4243 switch (GetFrameSubType(pframe)) { in mgt_dispatcher()
Drtw_wlan_util.c906 subtype = GetFrameSubType(pframe) >> 4; in rtw_check_bcn_info()
/linux-4.4.14/drivers/staging/rtl8188eu/hal/
Drtl8188e_rxdesc.c172 (GetFrameSubType(wlanhdr) == WIFI_BEACON); in update_recvframe_phyinfo_88e()
/linux-4.4.14/drivers/staging/rtl8188eu/include/
Dwifi.h221 #define GetFrameSubType(pbuf) (le16_to_cpu(*(__le16 *)(pbuf)) & (BIT(7) |\ macro