HomeSort by relevance Sort by last modified time
    Searched refs:tx_len (Results 1 - 10 of 10) 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/libese/tools/ese_replay/
payload.h 31 bool payload_init(struct Payload *p, uint32_t tx_len, uint32_t exp_len);
payload.c 27 bool payload_init(struct Payload *p, uint32_t tx_len, uint32_t exp_len) {
30 if (!buffer_init(&p->tx, tx_len))
  /external/libese/libese-hw/nxp/include/ese/hw/nxp/pn80t/
common.h 36 const struct EseSgBuffer *tx_buf, uint32_t tx_len,
  /external/libese/libese/include/ese/
ese.h 74 int ese_transceive(struct EseInterface *ese, const uint8_t *tx_buf, uint32_t tx_len, uint8_t *rx_buf, uint32_t rx_max);
  /external/libese/libese/
ese.c 87 uint32_t tx_len, uint8_t *rx_buf, uint32_t rx_max) {
89 .c_base = tx_buf, .len = tx_len,
  /external/libese/libese-hw/nxp/pn80t/
common.c 248 uint32_t tx_len,
261 if (ese_sg_to_buf(tx_buf, tx_len, 0, sizeof(buf), buf) != kCommandLength) {
308 const struct EseSgBuffer *tx_buf, uint32_t tx_len,
312 nxp_pn80t_handle_interface_call(ese, tx_buf, tx_len, rx_buf, rx_len);
316 return teq1_transceive(ese, &kTeq1Options, tx_buf, tx_len, rx_buf, rx_len);
  /external/libese/libese-hw/
ese_hw_echo.c 156 const struct EseSgBuffer *tx_buf, uint32_t tx_len,
158 return teq1_transceive(ese, &kTeq1Options, tx_buf, tx_len, rx_buf, rx_len);
  /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--;
  /external/chromium-trace/catapult/third_party/pyserial/serial/
serialposix.py 492 tx_len = len(d)
497 while tx_len > 0:
515 tx_len -= n

Completed in 836 milliseconds