HomeSort by relevance Sort by last modified time
    Searched defs:tx_len (Results 1 - 2 of 2) sorted by null

  /external/libese/tools/ese_relay/
ese_relay.c 86 uint32_t tx_len, data_read; local
116 tx_len = (uint32_t)ntohs(network_tx_len);
117 printf("tx_len: %u\n", tx_len);
118 if (tx_len == 0) {
122 if (tx_len > sizeof(tx_buf)) {
123 ALOGE("Client payload too large: %u", tx_len);
126 for (data_read = 0; data_read < tx_len;) {
127 printf("Reading payload: %u of %u remaining\n", data_read, tx_len);
128 ssize_t bytes = read(client_fd, tx_buf + data_read, tx_len - data_read)
    [all...]
  /external/u-boot/drivers/spi/
zynq_spi.c 216 u32 tx_len = len, rx_len = len, tx_tvl; local
236 while ((tx_tvl < priv->fifo_depth) && tx_len) {
242 tx_len--;

Completed in 606 milliseconds