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

/u-boot/drivers/tpm/
H A Dtpm2_tis_sandbox.c424 const u8 *sent = sendbuf; local
441 tag = get_unaligned_be16(sent);
442 sent += sizeof(tag);
444 length = get_unaligned_be32(sent);
445 sent += sizeof(length);
454 command = get_unaligned_be32(sent);
455 sent += sizeof(command);
462 rc = sandbox_tpm2_check_session(dev, command, tag, &sent, &hierarchy);
470 mode = get_unaligned_be16(sent);
471 sent
[all...]
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 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;
/u-boot/drivers/serial/
H A Dserial_xen.c109 int sent = 0; local
117 while ((sent < len) && ((prod - cons) < sizeof(intf->out)))
118 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++];
123 if (sent)
126 return sent;
138 int sent = __write_console(dev, data, len); local
140 data += sent;
141 len -= sent;
H A Dusbtty.c830 if(endpoint->sent < endpoint->tx_urb->actual_length){
/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.c359 ep0_endpoint->sent = 0;
547 /* Check if this is the last packet sent */
548 if (ep0_endpoint->sent >= ep0_urb->actual_length) {
553 transfer_size = ep0_urb->actual_length - ep0_endpoint->sent;
569 write_fifo(0, transfer_size, &ep0_urb->buffer[ep0_endpoint->sent]);
570 ep0_endpoint->sent += transfer_size;
573 if (ep0_endpoint->sent >= ep0_urb->actual_length)
589 if ((ep0_endpoint->sent >= ep0_urb->actual_length) && (p < pm))
833 /* Check if a packet is waiting to be sent */
839 endpoint->sent;
[all...]
/u-boot/drivers/input/
H A Dcros_ec_keyb.c126 int irq_pending, sent; local
160 sent = input_send_keycodes(input, keycodes, num_keycodes);
168 } while (irq_pending && !sent);
/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...]
/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 */

Completed in 146 milliseconds