Home
last modified time | relevance | path

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

/drivers/staging/rtl8723bs/include/
A Drtw_recv.h348 if (precvframe == NULL) in get_rxmem()
361 if (precvframe == NULL) in recvframe_pull()
367 if (precvframe->u.hdr.rx_data > precvframe->u.hdr.rx_tail) { in recvframe_pull()
372 precvframe->u.hdr.len -= sz; in recvframe_pull()
386 if (precvframe == NULL) in recvframe_put()
393 if (precvframe->u.hdr.rx_tail > precvframe->u.hdr.rx_end) { in recvframe_put()
398 precvframe->u.hdr.len += sz; in recvframe_put()
413 if (precvframe == NULL) in recvframe_pull_tail()
418 if (precvframe->u.hdr.rx_tail < precvframe->u.hdr.rx_data) { in recvframe_pull_tail()
423 precvframe->u.hdr.len -= sz; in recvframe_pull_tail()
[all …]
A Drtl8192c_recv.h38 void rtl8192c_translate_rx_signal_stuff(union recv_frame *precvframe, struct phy_stat *pphy_status);
39 void rtl8192c_query_rx_desc_status(union recv_frame *precvframe, struct recv_stat *pdesc);
A Drtw_security.h264 u32 rtw_aes_decrypt(struct adapter *padapter, u8 *precvframe);
265 u32 rtw_tkip_decrypt(struct adapter *padapter, u8 *precvframe);
266 void rtw_wep_decrypt(struct adapter *padapter, u8 *precvframe);
267 u32 rtw_BIP_verify(struct adapter *padapter, u8 *precvframe);
A Drecv_osdep.h25 void rtw_os_recv_resource_alloc(struct adapter *padapter, union recv_frame *precvframe);
29 void rtw_os_free_recvframe(union recv_frame *precvframe);
/drivers/staging/rtl8723bs/hal/
A Drtl8723bs_recv.c20 union recv_frame *precvframe, in update_recvframe_attrib() argument
135 precvframe->u.hdr.psta = NULL; in update_recvframe_phyinfo()
141 precvframe->u.hdr.psta = psta; in update_recvframe_phyinfo()
177 union recv_frame *precvframe; in try_alloc_recvframe() local
180 if (!precvframe) { in try_alloc_recvframe()
189 return precvframe; in try_alloc_recvframe()
225 union recv_frame *precvframe; in rtl8723bs_recv_tasklet() local
246 if (!precvframe) in rtl8723bs_recv_tasklet()
256 pattrib, precvframe)) in rtl8723bs_recv_tasklet()
307 precvframe->u.hdr.rx_data = precvframe->u.hdr.rx_tail = pkt_copy->data; in rtl8723bs_recv_tasklet()
[all …]
A Drtl8723b_rxdesc.c55 union recv_frame *precvframe = prframe; in rtl8723b_process_phy_info() local
59 process_rssi(padapter, precvframe); in rtl8723b_process_phy_info()
69 process_link_qual(padapter, precvframe); in rtl8723b_process_phy_info()
/drivers/staging/rtl8723bs/os_dep/
A Drecv_linux.c12 void rtw_os_free_recvframe(union recv_frame *precvframe) in rtw_os_free_recvframe() argument
14 if (precvframe->u.hdr.pkt) { in rtw_os_free_recvframe()
15 dev_kfree_skb_any(precvframe->u.hdr.pkt);/* free skb by driver */ in rtw_os_free_recvframe()
17 precvframe->u.hdr.pkt = NULL; in rtw_os_free_recvframe()
24 precvframe->u.hdr.pkt_newalloc = precvframe->u.hdr.pkt = NULL; in rtw_os_recv_resource_alloc()
31 union recv_frame *precvframe; in rtw_os_recv_resource_free() local
33 precvframe = (union recv_frame *) precvpriv->precv_frame_buf; in rtw_os_recv_resource_free()
36 if (precvframe->u.hdr.pkt) { in rtw_os_recv_resource_free()
38 dev_kfree_skb_any(precvframe->u.hdr.pkt); in rtw_os_recv_resource_free()
39 precvframe->u.hdr.pkt = NULL; in rtw_os_recv_resource_free()
[all …]
/drivers/staging/rtl8723bs/core/
A Drtw_recv.c34 union recv_frame *precvframe; in _rtw_init_recv_priv() local
71 precvframe->u.hdr.len = 0; in _rtw_init_recv_priv()
74 precvframe++; in _rtw_init_recv_priv()
107 union recv_frame *precvframe; in _rtw_alloc_recvframe() local
113 precvframe = NULL; in _rtw_alloc_recvframe()
129 return precvframe; in _rtw_alloc_recvframe()
134 union recv_frame *precvframe; in rtw_alloc_recvframe() local
142 return precvframe; in rtw_alloc_recvframe()
150 rtw_os_free_recvframe(precvframe); in rtw_free_recvframe()
157 precvframe->u.hdr.len = 0; in rtw_free_recvframe()
[all …]
A Drtw_security.c93 void rtw_wep_decrypt(struct adapter *padapter, u8 *precvframe) in rtw_wep_decrypt() argument
101 struct rx_pkt_attrib *prxattrib = &(((union recv_frame *)precvframe)->u.hdr.attrib); in rtw_wep_decrypt()
105 pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data; in rtw_wep_decrypt()
533 u32 rtw_tkip_decrypt(struct adapter *padapter, u8 *precvframe) in rtw_tkip_decrypt() argument
545 struct rx_pkt_attrib *prxattrib = &((union recv_frame *)precvframe)->u.hdr.attrib; in rtw_tkip_decrypt()
550 pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data; in rtw_tkip_decrypt()
1271 u32 rtw_aes_decrypt(struct adapter *padapter, u8 *precvframe) in rtw_aes_decrypt() argument
1286 pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data; in rtw_aes_decrypt()
1355 u32 rtw_BIP_verify(struct adapter *padapter, u8 *precvframe) in rtw_BIP_verify() argument
1357 struct rx_pkt_attrib *pattrib = &((union recv_frame *)precvframe)->u.hdr.attrib; in rtw_BIP_verify()
[all …]

Completed in 19 milliseconds