Lines Matching refs:pktlen
40 int pktlen; in vhci_read() local
59 pktlen = MIN(pkt[2] + 3, s->len); in vhci_read()
60 s->info->cmd_send(s->info, pkt, pktlen); in vhci_read()
61 s->len -= pktlen; in vhci_read()
62 pkt += pktlen; in vhci_read()
69 pktlen = MIN(((pkt[3] << 8) | pkt[2]) + 4, s->len); in vhci_read()
70 s->info->acl_send(s->info, pkt, pktlen); in vhci_read()
71 s->len -= pktlen; in vhci_read()
72 pkt += pktlen; in vhci_read()
79 pktlen = MIN(pkt[2] + 3, s->len); in vhci_read()
80 s->info->sco_send(s->info, pkt, pktlen); in vhci_read()
81 s->len -= pktlen; in vhci_read()
82 pkt += pktlen; in vhci_read()