Home
last modified time | relevance | path

Searched refs:recv_frame (Results 1 – 21 of 21) sorted by relevance

/drivers/staging/rtl8712/
Drtl871x_recv.h129 union recv_frame *r8712_alloc_recvframe(struct __queue *pfree_recv_queue);
130 int r8712_free_recvframe(union recv_frame *precvframe,
134 int r8712_wlanhdr_to_ethhdr(union recv_frame *precvframe);
137 static inline u8 *get_rxmem(union recv_frame *precvframe) in get_rxmem()
145 static inline u8 *get_recvframe_data(union recv_frame *precvframe) in get_recvframe_data()
153 static inline u8 *recvframe_pull(union recv_frame *precvframe, sint sz) in recvframe_pull()
169 static inline u8 *recvframe_put(union recv_frame *precvframe, sint sz) in recvframe_put()
186 static inline u8 *recvframe_pull_tail(union recv_frame *precvframe, sint sz) in recvframe_pull_tail()
208 union recv_frame *precvframe);
209 union recv_frame *r8712_decryptor(struct _adapter *adapter,
[all …]
Drtl871x_recv.c67 union recv_frame *precvframe; in _r8712_init_recv_priv()
76 sizeof(union recv_frame) + RXFRAME_ALIGN_SZ, in _r8712_init_recv_priv()
85 precvframe = (union recv_frame *)precvpriv->precv_frame_buf; in _r8712_init_recv_priv()
104 union recv_frame *r8712_alloc_recvframe(struct __queue *pfree_recv_queue) in r8712_alloc_recvframe()
107 union recv_frame *precvframe; in r8712_alloc_recvframe()
113 union recv_frame, u.hdr.list); in r8712_alloc_recvframe()
138 union recv_frame *precvframe; in r8712_free_recvframe_queue()
145 precvframe = container_of(plist, union recv_frame, u.list); in r8712_free_recvframe_queue()
153 union recv_frame *precvframe) in r8712_recvframe_chkmic()
213 union recv_frame *r8712_decryptor(struct _adapter *padapter, in r8712_decryptor()
[all …]
Drtl8712_recv.c136 int r8712_free_recvframe(union recv_frame *precvframe, in r8712_free_recvframe()
195 static union recv_frame *recvframe_defrag(struct _adapter *adapter, in recvframe_defrag()
202 union recv_frame *prframe, *pnextrframe; in recvframe_defrag()
208 prframe = container_of(plist, union recv_frame, u.list); in recvframe_defrag()
224 pnextrframe = container_of(plist, union recv_frame, u.list); in recvframe_defrag()
256 union recv_frame *r8712_recvframe_chk_defrag(struct _adapter *padapter, in r8712_recvframe_chk_defrag()
257 union recv_frame *precv_frame) in r8712_recvframe_chk_defrag()
266 union recv_frame *prtnframe = NULL; in r8712_recvframe_chk_defrag()
338 static int amsdu_to_msdu(struct _adapter *padapter, union recv_frame *prframe) in amsdu_to_msdu()
493 union recv_frame *prframe) in enqueue_reorder_recvframe()
[all …]
Drecv_osdep.h36 s32 r8712_recv_entry(union recv_frame *precv_frame);
38 union recv_frame *precv_frame);
44 union recv_frame *precvframe);
Drecv_linux.c45 union recv_frame *precvframe) in r8712_os_recv_resource_alloc()
107 union recv_frame *precv_frame) in r8712_recv_indicatepkt()
Drtl871x_security.c228 struct rx_pkt_attrib *prxattrib = &(((union recv_frame *) in r8712_wep_decrypt()
232 pframe = (unsigned char *)((union recv_frame *)precvframe)-> in r8712_wep_decrypt()
244 length = ((union recv_frame *)precvframe)-> in r8712_wep_decrypt()
663 struct rx_pkt_attrib *prxattrib = &((union recv_frame *) in r8712_tkip_decrypt()
667 pframe = (unsigned char *)((union recv_frame *) in r8712_tkip_decrypt()
677 length = ((union recv_frame *)precvframe)-> in r8712_tkip_decrypt()
1371 struct rx_pkt_attrib *prxattrib = &((union recv_frame *) in r8712_aes_decrypt()
1375 pframe = (unsigned char *)((union recv_frame *)precvframe)-> in r8712_aes_decrypt()
1393 length = ((union recv_frame *)precvframe)-> in r8712_aes_decrypt()
Drtl8712_recv.h144 union recv_frame { union
/drivers/staging/rtl8188eu/include/
Drtw_recv.h239 struct recv_frame { struct
254 struct recv_frame *_rtw_alloc_recvframe(struct __queue *pfree_recv_queue); argument
255 struct recv_frame *rtw_alloc_recvframe(struct __queue *pfree_recv_queue);
256 void rtw_init_recvframe(struct recv_frame *precvframe,
258 int rtw_free_recvframe(struct recv_frame *precvframe,
261 int _rtw_enqueue_recvframe(struct recv_frame *precvframe,
263 int rtw_enqueue_recvframe(struct recv_frame *precvframe, struct __queue *queue);
270 static inline u8 *get_rxmem(struct recv_frame *precvframe) in get_rxmem()
278 static inline u8 *recvframe_pull(struct recv_frame *precvframe, int sz) in recvframe_pull()
296 static inline u8 *recvframe_put(struct recv_frame *precvframe, int sz) in recvframe_put()
[all …]
Drecv_osdep.h26 s32 rtw_recv_entry(struct recv_frame *precv_frame);
28 struct recv_frame *recv_frame);
32 void rtw_os_recv_resource_alloc(struct recv_frame *recvfr);
Drtl8188e_recv.h56 void rtl8188e_query_rx_phy_status(struct recv_frame *fr, struct phy_stat *phy);
58 struct recv_frame *prframe);
59 void update_recvframe_phyinfo_88e(struct recv_frame *fra, struct phy_stat *phy);
60 void update_recvframe_attrib_88e(struct recv_frame *fra,
Dmon.h26 struct recv_frame;
32 void rtl88eu_mon_recv_hook(struct net_device *dev, struct recv_frame *frame);
Drtw_mlme_ext.h242 unsigned int (*func)(struct adapter *adapt, struct recv_frame *frame);
248 unsigned int (*func)(struct adapter *adapt, struct recv_frame *frame);
544 struct recv_frame *precv_frame);
/drivers/staging/rtl8188eu/core/
Drtw_recv.c59 struct recv_frame *precvframe; in _rtw_init_recv_priv()
71 …precvpriv->pallocated_frame_buf = vzalloc(NR_RECVFRAME * sizeof(struct recv_frame) + RXFRAME_ALIGN… in _rtw_init_recv_priv()
78 precvframe = (struct recv_frame *)precvpriv->precv_frame_buf; in _rtw_init_recv_priv()
120 struct recv_frame *_rtw_alloc_recvframe(struct __queue *pfree_recv_queue) in _rtw_alloc_recvframe()
122 struct recv_frame *hdr; in _rtw_alloc_recvframe()
127 struct recv_frame, list); in _rtw_alloc_recvframe()
141 struct recv_frame *rtw_alloc_recvframe(struct __queue *pfree_recv_queue) in rtw_alloc_recvframe()
143 struct recv_frame *precvframe; in rtw_alloc_recvframe()
154 int rtw_free_recvframe(struct recv_frame *precvframe, in rtw_free_recvframe()
187 int _rtw_enqueue_recvframe(struct recv_frame *precvframe, struct __queue *queue) in _rtw_enqueue_recvframe()
[all …]
Drtw_sta_mgt.c313 struct recv_frame *prhdr; in rtw_free_stainfo()
314 struct recv_frame *prframe; in rtw_free_stainfo()
330 prhdr = container_of(plist, struct recv_frame, list); in rtw_free_stainfo()
331 prframe = (struct recv_frame *)prhdr; in rtw_free_stainfo()
Drtw_mlme_ext.c2044 struct recv_frame *precv_frame, in collect_bss_info()
2550 struct recv_frame *precv_frame) in OnProbeReq()
2585 struct recv_frame *precv_frame) in OnProbeRsp()
2598 struct recv_frame *precv_frame) in OnBeacon()
2690 struct recv_frame *precv_frame) in OnAuth()
2859 struct recv_frame *precv_frame) in OnAuthClient()
2935 struct recv_frame *precv_frame) in OnAssocReq()
3376 struct recv_frame *precv_frame) in OnAssocRsp()
3466 struct recv_frame *precv_frame) in OnDeAuth()
3521 struct recv_frame *precv_frame) in OnDisassoc()
[all …]
Drtw_security.c203 struct rx_pkt_attrib *prxattrib = &(((struct recv_frame *)precvframe)->attrib); in rtw_wep_decrypt()
207 pframe = (unsigned char *)((struct recv_frame *)precvframe)->rx_data; in rtw_wep_decrypt()
216 length = ((struct recv_frame *)precvframe)->len-prxattrib->hdrlen-prxattrib->iv_len; in rtw_wep_decrypt()
650 struct rx_pkt_attrib *prxattrib = &((struct recv_frame *)precvframe)->attrib; in rtw_tkip_decrypt()
655 pframe = (unsigned char *)((struct recv_frame *)precvframe)->rx_data; in rtw_tkip_decrypt()
675 length = ((struct recv_frame *)precvframe)->len-prxattrib->hdrlen-prxattrib->iv_len; in rtw_tkip_decrypt()
1452 struct rx_pkt_attrib *prxattrib = &((struct recv_frame *)precvframe)->attrib; in rtw_aes_decrypt()
1455 pframe = (unsigned char *)((struct recv_frame *)precvframe)->rx_data; in rtw_aes_decrypt()
1479 length = ((struct recv_frame *)precvframe)->len-prxattrib->hdrlen-prxattrib->iv_len; in rtw_aes_decrypt()
/drivers/staging/rtl8188eu/hal/
Drtl8188e_rxdesc.c21 static void process_rssi(struct adapter *padapter, struct recv_frame *prframe) in process_rssi()
38 struct recv_frame *prframe) in process_link_qual()
61 struct recv_frame *precvframe) in rtl8188e_process_phy_info()
69 void update_recvframe_attrib_88e(struct recv_frame *precvframe, in update_recvframe_attrib_88e()
137 void update_recvframe_phyinfo_88e(struct recv_frame *precvframe, in update_recvframe_phyinfo_88e()
/drivers/staging/rtl8188eu/os_dep/
Drecv_linux.c25 void rtw_os_recv_resource_alloc(struct recv_frame *precvframe) in rtw_os_recv_resource_alloc()
79 struct recv_frame *precv_frame) in rtw_recv_indicatepkt()
Dmon.c82 void rtl88eu_mon_recv_hook(struct net_device *dev, struct recv_frame *frame) in rtl88eu_mon_recv_hook()
Dusb_ops_linux.c49 struct recv_frame *precvframe = NULL; in recvbuf2recvframe()
/drivers/net/wan/
Dsbni.c126 static int recv_frame( struct net_device * );
557 req_ans = recv_frame( dev ); in handle_channel()
590 recv_frame( struct net_device *dev ) in recv_frame() function