Searched refs:tx_len (Results 1 – 9 of 9) sorted by relevance
/external/libese/tools/ese_relay/ |
D | ese_relay.c | 86 uint32_t tx_len, data_read; in main() local 116 tx_len = (uint32_t)ntohs(network_tx_len); in main() 117 printf("tx_len: %u\n", tx_len); in main() 118 if (tx_len == 0) { in main() 122 if (tx_len > sizeof(tx_buf)) { in main() 123 ALOGE("Client payload too large: %u", tx_len); in main() 126 for (data_read = 0; data_read < tx_len;) { in main() 127 printf("Reading payload: %u of %u remaining\n", data_read, tx_len); in main() 128 ssize_t bytes = read(client_fd, tx_buf + data_read, tx_len - data_read); in main() 137 if (tx_len) { in main() [all …]
|
/external/libese/libese-hw/nxp/pn80t/ |
D | common.c | 248 uint32_t tx_len, in nxp_pn80t_handle_interface_call() argument 261 if (ese_sg_to_buf(tx_buf, tx_len, 0, sizeof(buf), buf) != kCommandLength) { in nxp_pn80t_handle_interface_call() 308 const struct EseSgBuffer *tx_buf, uint32_t tx_len, in nxp_pn80t_transceive() argument 312 nxp_pn80t_handle_interface_call(ese, tx_buf, tx_len, rx_buf, rx_len); in nxp_pn80t_transceive() 316 return teq1_transceive(ese, &kTeq1Options, tx_buf, tx_len, rx_buf, rx_len); in nxp_pn80t_transceive()
|
/external/libese/tools/ese_replay/ |
D | payload.c | 27 bool payload_init(struct Payload *p, uint32_t tx_len, uint32_t exp_len) { in payload_init() argument 30 if (!buffer_init(&p->tx, tx_len)) in payload_init()
|
D | payload.h | 31 bool payload_init(struct Payload *p, uint32_t tx_len, uint32_t exp_len);
|
/external/libese/libese/ |
D | ese.c | 87 uint32_t tx_len, uint8_t *rx_buf, uint32_t rx_max) { in ese_transceive() argument 89 .c_base = tx_buf, .len = tx_len, in ese_transceive()
|
/external/libese/libese-hw/ |
D | ese_hw_echo.c | 156 const struct EseSgBuffer *tx_buf, uint32_t tx_len, in echo_transceive() argument 158 return teq1_transceive(ese, &kTeq1Options, tx_buf, tx_len, rx_buf, rx_len); in echo_transceive()
|
/external/libese/libese-hw/nxp/include/ese/hw/nxp/pn80t/ |
D | common.h | 36 const struct EseSgBuffer *tx_buf, uint32_t tx_len,
|
/external/libese/libese/include/ese/ |
D | ese.h | 74 int ese_transceive(struct EseInterface *ese, const uint8_t *tx_buf, uint32_t tx_len, uint8_t *rx_bu…
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialposix.py | 492 tx_len = len(d) 497 while tx_len > 0: 515 tx_len -= n
|