/Linux-v4.19/drivers/net/usb/ |
D | lg-vl600.c | 252 int full_len = (skb->len + sizeof(struct vl600_frame_hdr) + 3) & ~3; in vl600_tx_fixup() local 266 if (tailroom >= full_len - skb->len - sizeof(*frame) && in vl600_tx_fixup() 271 if (headroom + tailroom + skb->len >= full_len) { in vl600_tx_fixup() 281 ret = skb_copy_expand(skb, sizeof(struct vl600_frame_hdr), full_len - in vl600_tx_fixup() 305 frame->len = cpu_to_le32(full_len); in vl600_tx_fixup() 309 if (skb->len < full_len) /* Pad */ in vl600_tx_fixup() 310 skb_put(skb, full_len - skb->len); in vl600_tx_fixup()
|
/Linux-v4.19/net/strparser/ |
D | strparser.c | 226 if (!stm->strp.full_len) { in __strp_recv() 266 stm->strp.full_len = len; in __strp_recv() 270 stm->strp.full_len; in __strp_recv() 274 if (stm->strp.full_len - stm->accum_len > in __strp_recv() 290 strp->need_bytes = stm->strp.full_len - in __strp_recv()
|
/Linux-v4.19/scripts/mod/ |
D | sumversion.c | 477 unsigned int len, full_len; in strip_rcs_crap() local 483 full_len = strlen(version) + strlen(version + strlen(version) + 1) + 2; in strip_rcs_crap() 492 memmove(version, version+len, full_len-len); in strip_rcs_crap() 493 full_len -= len; in strip_rcs_crap() 500 full_len - strlen(version)); in strip_rcs_crap()
|
/Linux-v4.19/net/tls/ |
D | tls_sw.c | 680 const int data_len = rxm->full_len - tls_ctx->rx.overhead_size; in decrypt_internal() 732 tls_make_aad(aad, rxm->full_len - tls_ctx->rx.overhead_size, in decrypt_internal() 741 rxm->full_len - tls_ctx->rx.prepend_size); in decrypt_internal() 804 rxm->full_len -= tls_ctx->rx.overhead_size; in decrypt_skb_update() 828 if (len < rxm->full_len) { in tls_sw_advance_skb() 830 rxm->full_len -= len; in tls_sw_advance_skb() 897 int to_copy = rxm->full_len - tls_ctx->rx.overhead_size; in tls_sw_recvmsg() 913 chunk = min_t(unsigned int, rxm->full_len, len); in tls_sw_recvmsg() 993 chunk = min_t(unsigned int, rxm->full_len, len); in tls_sw_splice_read()
|
D | tls_device.c | 577 orig_buf = kmalloc(rxm->full_len + TLS_HEADER_SIZE + in tls_device_reencrypt() 591 rxm->full_len + TLS_HEADER_SIZE + in tls_device_reencrypt() 604 rxm->full_len - TLS_CIPHER_AES_GCM_128_TAG_SIZE); in tls_device_reencrypt() 614 rxm->full_len - offset + rxm->offset - in tls_device_reencrypt()
|
/Linux-v4.19/drivers/net/wireless/ath/ath10k/ |
D | sdio.c | 61 size_t act_len, size_t full_len, in ath10k_sdio_mbox_alloc_rx_pkt() argument 65 pkt->skb = dev_alloc_skb(full_len); in ath10k_sdio_mbox_alloc_rx_pkt() 70 pkt->alloc_len = full_len; in ath10k_sdio_mbox_alloc_rx_pkt() 506 size_t full_len, size_t act_len, in ath10k_sdio_mbox_alloc_pkt_bundle() argument 530 full_len, in ath10k_sdio_mbox_alloc_pkt_bundle() 545 size_t full_len, act_len; in ath10k_sdio_mbox_rx_alloc() local 573 full_len = ath10k_sdio_calc_txrx_padded_len(ar_sdio, act_len); in ath10k_sdio_mbox_rx_alloc() 575 if (full_len > ATH10K_SDIO_MAX_BUFFER_SIZE) { in ath10k_sdio_mbox_rx_alloc() 594 full_len, in ath10k_sdio_mbox_rx_alloc() 609 full_len += ATH10K_HIF_MBOX_BLOCK_SIZE; in ath10k_sdio_mbox_rx_alloc() [all …]
|
/Linux-v4.19/include/net/ |
D | strparser.h | 56 int full_len; member
|
/Linux-v4.19/drivers/usb/host/ |
D | xhci-ring.c | 2907 unsigned int i, len, full_len, num_trbs = 0; in count_sg_trbs_needed() local 2909 full_len = urb->transfer_buffer_length; in count_sg_trbs_needed() 2914 len = min_t(unsigned int, len, full_len); in count_sg_trbs_needed() 2915 full_len -= len; in count_sg_trbs_needed() 2916 if (full_len == 0) in count_sg_trbs_needed() 3129 unsigned int enqd_len, block_len, trb_buff_len, full_len; in xhci_queue_bulk_tx() local 3138 full_len = urb->transfer_buffer_length; in xhci_queue_bulk_tx() 3149 block_len = full_len; in xhci_queue_bulk_tx() 3175 for (enqd_len = 0; first_trb || enqd_len < full_len; in xhci_queue_bulk_tx() 3183 if (enqd_len + trb_buff_len > full_len) in xhci_queue_bulk_tx() [all …]
|
/Linux-v4.19/drivers/net/wireless/ |
D | wl3501_cs.c | 296 u16 full_len = sizeof(struct wl3501_80211_tx_hdr) + len; in wl3501_get_tx_buffer() local 299 if (full_len > this->tx_buffer_cnt * 254) in wl3501_get_tx_buffer() 302 while (full_len) { in wl3501_get_tx_buffer() 303 if (full_len < 254) in wl3501_get_tx_buffer() 304 full_len = 0; in wl3501_get_tx_buffer() 306 full_len -= 254; in wl3501_get_tx_buffer() 309 if (!full_len) in wl3501_get_tx_buffer() 315 if (!next && full_len) { in wl3501_get_tx_buffer()
|
/Linux-v4.19/Documentation/networking/ |
D | strparser.txt | 150 struct contains two fields: offset and full_len. Offset is 151 where the message starts in the skb, and full_len is the 153 then full_len since strparser does not trim the skb.
|
/Linux-v4.19/net/kcm/ |
D | kcmsock.c | 1137 if (len > stm->full_len) in kcm_recvmsg() 1138 len = stm->full_len; in kcm_recvmsg() 1147 if (copied < stm->full_len) { in kcm_recvmsg() 1154 stm->full_len -= copied; in kcm_recvmsg() 1197 if (len > stm->full_len) in kcm_splice_read() 1198 len = stm->full_len; in kcm_splice_read() 1209 stm->full_len -= copied; in kcm_splice_read()
|
/Linux-v4.19/drivers/net/wireless/zydas/zd1211rw/ |
D | zd_mac.c | 721 u32 full_len = beacon->len + 4; in zd_mac_config_beacon() local 734 num_cmds = 1 + zd_chip_is_zd1211b(&mac->chip) + full_len; in zd_mac_config_beacon() 774 ioreqs[req_pos].value = full_len - 1; in zd_mac_config_beacon() 778 ioreqs[req_pos].value = full_len - 1; in zd_mac_config_beacon() 838 r = zd_iowrite32_locked(&mac->chip, 0x00000400 | (full_len << 19), in zd_mac_config_beacon()
|
/Linux-v4.19/drivers/net/wireless/ath/ath6kl/ |
D | htc_mbox.c | 1374 int status = 0, j, full_len; in ath6kl_htc_rx_setup() local 1377 full_len = CALC_TXRX_PADDED_LEN(target, in ath6kl_htc_rx_setup() 1381 if (!htc_valid_rx_frame_len(target, ep->eid, full_len)) { in ath6kl_htc_rx_setup() 1398 (full_len > ep_cb.rx_alloc_thresh)) { in ath6kl_htc_rx_setup() 1407 full_len); in ath6kl_htc_rx_setup()
|
/Linux-v4.19/net/ipv6/ |
D | mcast.c | 1993 int err, len, payload_len, full_len; in igmp6_send() local 2007 full_len = sizeof(struct ipv6hdr) + payload_len; in igmp6_send() 2011 IPSTATS_MIB_OUT, full_len); in igmp6_send() 2014 skb = sock_alloc_send_skb(sk, hlen + tlen + full_len, 1, &err); in igmp6_send()
|