Symbol: L2CAP_HDR_SIZE
net/bluetooth/l2cap_core.c
1157
skb->data + L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
1160
skb->data + L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
1187
lh = skb_put(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
1188
lh->len = cpu_to_le16(hlen - L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2118
tx_skb->data + L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2121
tx_skb->data + L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2282
int err, count, hlen = L2CAP_HDR_SIZE + L2CAP_PSMLEN_SIZE;
net/bluetooth/l2cap_core.c
2296
lh = skb_put(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2319
count = min_t(unsigned int, (conn->mtu - L2CAP_HDR_SIZE), len);
net/bluetooth/l2cap_core.c
2321
skb = chan->ops->alloc_skb(chan, L2CAP_HDR_SIZE, count,
net/bluetooth/l2cap_core.c
2327
lh = skb_put(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2369
lh = skb_put(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2371
lh->len = cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE));
net/bluetooth/l2cap_core.c
2476
hlen = L2CAP_HDR_SIZE;
net/bluetooth/l2cap_core.c
2489
lh = skb_put(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
2491
lh->len = cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE));
net/bluetooth/l2cap_core.c
3021
if (conn->mtu < L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE)
net/bluetooth/l2cap_core.c
3024
len = L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE + dlen;
net/bluetooth/l2cap_core.c
3031
lh = skb_put(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
3045
count -= L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE;
net/bluetooth/l2cap_core.c
603
chan->mps = min_t(u16, chan->imtu, chan->conn->mtu - L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
7089
skb_pull(skb, L2CAP_HDR_SIZE);
net/bluetooth/l2cap_core.c
7749
if (len + (L2CAP_HDR_SIZE - L2CAP_LEN_SIZE) <= skb_tailroom(rx_skb)) {
net/bluetooth/l2cap_core.c
7751
conn->rx_len = len + (L2CAP_HDR_SIZE - L2CAP_LEN_SIZE);
net/bluetooth/l2cap_core.c
7762
len + (L2CAP_HDR_SIZE - L2CAP_LEN_SIZE));
net/bluetooth/l2cap_core.c
7846
len = get_unaligned_le16(skb->data) + L2CAP_HDR_SIZE;