Home | History | Annotate | Download | only in hw

Lines Matching defs:in_len

42     int in_len;
193 s->in_len - sizeof(struct hci_command_hdr) - 1);
203 s->hci->cmd_send(s->hci, pkt, s->in_len - 1);
210 s->hci->acl_send(s->hci, pkt, s->in_len - 1);
214 s->hci->sco_send(s->hci, pkt, s->in_len - 1);
303 int plen = s->in_len;
308 s->in_len += len;
312 if (s->in_len >= 2 && plen < 2)
315 if (s->in_len >= s->in_hdr && plen < s->in_hdr)
318 if (s->in_len >= s->in_data) {
321 memmove(s->inpkt, s->inpkt + s->in_len, s->in_len - s->in_data);
322 s->in_len -= s->in_data;
392 s->in_len = 0;