Searched refs:hci_skb_expect (Results 1 – 4 of 4) sorted by relevance
66 hci_skb_expect(skb) = (&pkts[i])->hlen; in h4_recv_buf()78 len = min_t(uint, hci_skb_expect(skb) - skb->len, count); in h4_recv_buf()85 if (skb->len < hci_skb_expect(skb)) in h4_recv_buf()109 hci_skb_expect(skb) += dlen; in h4_recv_buf()120 hci_skb_expect(skb) += dlen; in h4_recv_buf()
188 hci_skb_expect(skb) = (&pkts[i])->hlen; in h4_recv_buf()200 len = min_t(uint, hci_skb_expect(skb) - skb->len, count); in h4_recv_buf()207 if (skb->len < hci_skb_expect(skb)) in h4_recv_buf()231 hci_skb_expect(skb) += dlen; in h4_recv_buf()242 hci_skb_expect(skb) += dlen; in h4_recv_buf()
598 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE; in btusb_recv_intr()601 len = min_t(uint, hci_skb_expect(skb), count); in btusb_recv_intr()606 hci_skb_expect(skb) -= len; in btusb_recv_intr()610 hci_skb_expect(skb) = hci_event_hdr(skb)->plen; in btusb_recv_intr()612 if (skb_tailroom(skb) < hci_skb_expect(skb)) { in btusb_recv_intr()621 if (!hci_skb_expect(skb)) { in btusb_recv_intr()654 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE; in btusb_recv_bulk()657 len = min_t(uint, hci_skb_expect(skb), count); in btusb_recv_bulk()662 hci_skb_expect(skb) -= len; in btusb_recv_bulk()668 hci_skb_expect(skb) = __le16_to_cpu(dlen); in btusb_recv_bulk()[all …]
332 #define hci_skb_expect(skb) bt_cb((skb))->expect macro