Symbol: HCI_EVENT_HDR_SIZE
drivers/bluetooth/bfusb.c
276
if (len >= HCI_EVENT_HDR_SIZE) {
drivers/bluetooth/bfusb.c
278
pkt_len = HCI_EVENT_HDR_SIZE + hdr->plen;
drivers/bluetooth/btintel.c
1677
while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
drivers/bluetooth/btintel.c
3807
if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
drivers/bluetooth/btintel.c
3809
const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
drivers/bluetooth/btintel.c
3810
unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
drivers/bluetooth/btintel_pcie.c
1116
if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
drivers/bluetooth/btintel_pcie.c
1118
const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
drivers/bluetooth/btintel_pcie.c
1119
unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
drivers/bluetooth/btintel_pcie.c
1230
if (skb->len >= HCI_EVENT_HDR_SIZE) {
drivers/bluetooth/btintel_pcie.c
1231
plen = HCI_EVENT_HDR_SIZE + hci_event_hdr(skb)->plen;
drivers/bluetooth/btmrvl_main.c
50
ec = (void *) (skb->data + HCI_EVENT_HDR_SIZE);
drivers/bluetooth/btmtk.c
1557
skb->len >= HCI_EVENT_HDR_SIZE + sizeof(*ec)) {
drivers/bluetooth/btmtk.c
1560
ec = (void *)(skb->data + HCI_EVENT_HDR_SIZE);
drivers/bluetooth/btusb.c
1268
hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
drivers/bluetooth/btusb.c
1278
if (skb->len == HCI_EVENT_HDR_SIZE) {
drivers/bluetooth/btusb.c
1297
if (count && count < HCI_EVENT_HDR_SIZE) {
drivers/bluetooth/btusb.c
2785
if (skb->len >= HCI_EVENT_HDR_SIZE + 1 &&
drivers/bluetooth/hci_bcm4377.c
113
#define MAX_EVENT_PAYLOAD_SIZE (HCI_MAX_EVENT_SIZE + HCI_EVENT_HDR_SIZE)
drivers/bluetooth/hci_bcsp.c
545
memcpy(skb_push(bcsp->rx_skb, HCI_EVENT_HDR_SIZE), &hdr, HCI_EVENT_HDR_SIZE);
drivers/bluetooth/hci_intel.c
41
#define HCI_LPM_HDR_SIZE HCI_EVENT_HDR_SIZE
drivers/bluetooth/hci_uart.h
149
.hlen = HCI_EVENT_HDR_SIZE, \
net/bluetooth/hci_event.c
7831
skb_pull(skb, HCI_EVENT_HDR_SIZE);
net/bluetooth/hci_sock.c
789
skb = bt_skb_alloc(HCI_EVENT_HDR_SIZE + sizeof(*ev) + dlen, GFP_ATOMIC);
net/bluetooth/hci_sock.c
793
hdr = skb_put(skb, HCI_EVENT_HDR_SIZE);