Home
last modified time | relevance | path

Searched refs:L2CAP_HDR_SIZE (Results 1 – 2 of 2) sorted by relevance

/linux-2.4.37.9/net/bluetooth/
Dl2cap.c1048 hlen = L2CAP_HDR_SIZE + 2; in l2cap_chan_send()
1050 hlen = L2CAP_HDR_SIZE; in l2cap_chan_send()
1060 lh = (l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE); in l2cap_chan_send()
1062 lh->len = __cpu_to_le16(len + (hlen - L2CAP_HDR_SIZE)); in l2cap_chan_send()
1137 len = L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE + dlen; in l2cap_build_cmd()
1144 lh = (l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE); in l2cap_build_cmd()
1154 count -= L2CAP_HDR_SIZE + L2CAP_CMD_HDR_SIZE; in l2cap_build_cmd()
1833 skb_pull(skb, L2CAP_HDR_SIZE); in l2cap_recv_frame()
2038 len = __le16_to_cpu(hdr->len) + L2CAP_HDR_SIZE; in l2cap_recv_acldata()
/linux-2.4.37.9/include/net/bluetooth/
Dl2cap.h97 #define L2CAP_HDR_SIZE 4 macro