Searched refs:sent (Results 1 - 10 of 10) sorted by path

/u-boot/drivers/input/
H A Dcros_ec_keyb.c125 int irq_pending, sent; local
159 sent = input_send_keycodes(input, keycodes, num_keycodes);
167 } while (irq_pending && !sent);
/u-boot/drivers/serial/
H A Dserial_xen.c108 int sent = 0; local
116 while ((sent < len) && ((prod - cons) < sizeof(intf->out)))
117 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++];
122 if (sent)
125 return sent;
137 int sent = __write_console(dev, data, len); local
139 data += sent;
140 len -= sent;
H A Dusbtty.c829 if(endpoint->sent < endpoint->tx_urb->actual_length){
/u-boot/drivers/tpm/
H A Dcr50_i2c.c463 size_t burstcnt, limit, sent = 0; local
489 if (sent > 0)
501 &buf[sent], limit) != 0) {
506 sent += limit;
526 return sent;
H A Dtpm2_tis_core.c222 size_t burstcnt, wr_size, sent = 0; local
256 wr_size, buf + sent);
265 sent += wr_size;
292 return sent;
H A Dtpm2_tis_sandbox.c423 const u8 *sent = sendbuf; local
440 tag = get_unaligned_be16(sent);
441 sent += sizeof(tag);
443 length = get_unaligned_be32(sent);
444 sent += sizeof(length);
453 command = get_unaligned_be32(sent);
454 sent += sizeof(command);
461 rc = sandbox_tpm2_check_session(dev, command, tag, &sent, &hierarchy);
469 mode = get_unaligned_be16(sent);
470 sent
[all...]
/u-boot/drivers/usb/gadget/
H A Dcore.c354 int sent = endpoint->last; local
355 endpoint->sent += sent;
356 endpoint->last -= sent;
358 if( (endpoint->tx_urb->actual_length - endpoint->sent) <= 0 ) {
360 endpoint->sent = 0;
/u-boot/drivers/usb/musb/
H A Dmusb_udc.c358 ep0_endpoint->sent = 0;
546 /* Check if this is the last packet sent */
547 if (ep0_endpoint->sent >= ep0_urb->actual_length) {
552 transfer_size = ep0_urb->actual_length - ep0_endpoint->sent;
568 write_fifo(0, transfer_size, &ep0_urb->buffer[ep0_endpoint->sent]);
569 ep0_endpoint->sent += transfer_size;
572 if (ep0_endpoint->sent >= ep0_urb->actual_length)
588 if ((ep0_endpoint->sent >= ep0_urb->actual_length) && (p < pm))
832 /* Check if a packet is waiting to be sent */
838 endpoint->sent;
[all...]
/u-boot/include/
H A Dusbdevice.h439 * transmitted data has been sent.
465 u16 buffer_data[URB_BUF_SIZE]; /* data received (OUT) or being sent (IN) */
499 int sent; /* data already sent */ member in struct:usb_endpoint_instance
500 int last; /* data sent in last packet XXX do we need this */
/u-boot/tools/
H A Dkwboot.c963 * At this stage we have sent more boot message patterns and BootROM
964 * (at least on Armada XP and 385) started interpreting sent bytes as
1100 * sent by the BootROM now.
1393 size_t sent, left; local
1400 sent = 0;
1402 while (sent < size) {
1418 * itself sent NAK response to previous attempt (it does it on
1421 * sent NAK to previous attempt - there is absolutely no way to
1439 sent += blksz;
1443 kwboot_progress(sent * 10
[all...]

Completed in 192 milliseconds