/wlan-driver/qcacld-3.0/components/pkt_capture/core/src/ |
D | wlan_pkt_capture_data_txrx.c | 895 uint32_t headroom; in pkt_capture_rx_data_cb() local 980 headroom = qdf_nbuf_headroom(msdu); in pkt_capture_rx_data_cb() 981 qdf_nbuf_update_radiotap(&rx_status, msdu, headroom); in pkt_capture_rx_data_cb() 1022 uint32_t headroom; in pkt_capture_rx_data_cb() local 1086 headroom = qdf_nbuf_headroom(msdu); in pkt_capture_rx_data_cb() 1087 qdf_nbuf_update_radiotap(&rx_status, msdu, headroom); in pkt_capture_rx_data_cb() 1137 uint32_t headroom; in pkt_capture_tx_data_cb() local 1268 headroom = qdf_nbuf_headroom(msdu); in pkt_capture_tx_data_cb() 1269 qdf_nbuf_update_radiotap(&tx_status, msdu, headroom); in pkt_capture_tx_data_cb() 1335 uint32_t headroom; in pkt_capture_tx_data_cb() local [all …]
|
D | wlan_pkt_capture_mgmt_txrx.c | 138 uint32_t headroom; in pkt_capture_mgmtpkt_process() local 245 headroom = qdf_nbuf_headroom(nbuf); in pkt_capture_mgmtpkt_process() 246 qdf_nbuf_update_radiotap(txrx_status, nbuf, headroom); in pkt_capture_mgmtpkt_process()
|
/wlan-driver/qca-wifi-host-cmn/qdf/inc/ |
D | qdf_nbuf.h | 2473 #define qdf_nbuf_copy_expand(buf, headroom, tailroom) \ argument 2474 qdf_nbuf_copy_expand_debug(buf, headroom, tailroom, __func__, __LINE__) 2488 qdf_nbuf_copy_expand_debug(qdf_nbuf_t buf, int headroom, int tailroom, 2685 static inline qdf_nbuf_t qdf_nbuf_copy_expand(qdf_nbuf_t buf, int headroom, in qdf_nbuf_copy_expand() argument 2688 return __qdf_nbuf_copy_expand(buf, headroom, tailroom); in qdf_nbuf_copy_expand() 2782 qdf_nbuf_copy_expand_fraglist(qdf_nbuf_t buf, int headroom, in qdf_nbuf_copy_expand_fraglist() argument 2785 buf = qdf_nbuf_copy_expand(buf, headroom, tailroom); in qdf_nbuf_copy_expand_fraglist() 4910 qdf_nbuf_realloc_headroom(qdf_nbuf_t buf, uint32_t headroom) in qdf_nbuf_realloc_headroom() argument 4912 return __qdf_nbuf_realloc_headroom(buf, headroom); in qdf_nbuf_realloc_headroom() 4922 qdf_nbuf_expand(qdf_nbuf_t buf, uint32_t headroom, uint32_t tailroom) in qdf_nbuf_expand() argument [all …]
|
/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/ |
D | i_qdf_nbuf.h | 2341 __qdf_nbuf_realloc_headroom(struct sk_buff *skb, uint32_t headroom) in __qdf_nbuf_realloc_headroom() argument 2343 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) { in __qdf_nbuf_realloc_headroom() 2454 __qdf_nbuf_expand(struct sk_buff *skb, uint32_t headroom, uint32_t tailroom) in __qdf_nbuf_expand() argument 2456 if (likely(!pskb_expand_head(skb, headroom, tailroom, GFP_ATOMIC))) in __qdf_nbuf_expand() 2474 __qdf_nbuf_copy_expand(struct sk_buff *buf, int headroom, int tailroom) in __qdf_nbuf_copy_expand() argument 2477 copy = skb_copy_expand(buf, headroom, tailroom, GFP_ATOMIC); in __qdf_nbuf_copy_expand()
|
D | qdf_nbuf.c | 3791 qdf_nbuf_copy_expand_debug(qdf_nbuf_t buf, int headroom, int tailroom, in qdf_nbuf_copy_expand_debug() argument 3794 qdf_nbuf_t copied_buf = __qdf_nbuf_copy_expand(buf, headroom, tailroom); in qdf_nbuf_copy_expand_debug()
|
/wlan-driver/qcacld-3.0/core/dp/htt/ |
D | htt_rx_ll.c | 411 int headroom; in htt_rx_ring_fill_n() local 453 headroom = qdf_nbuf_data(rx_netbuf) - (uint8_t *)rx_desc; in htt_rx_ring_fill_n() 454 qdf_nbuf_push_head(rx_netbuf, headroom); in htt_rx_ring_fill_n()
|