/external/libese/tools/ese_relay/ |
D | ese_relay.c | 91 uint8_t tx_buf[4096]; in main() local 123 if (tx_len > sizeof(tx_buf)) { in main() 129 ssize_t bytes = read(client_fd, tx_buf + data_read, tx_len - data_read); in main() 143 printf("%.2X ", tx_buf[i]); in main() 148 printf("Received a control request: %x\n", tx_buf[0]); in main() 150 switch (tx_buf[0]) { in main() 167 ALOGE("Unknown control byte seen: %x", tx_buf[0]); in main() 172 rx_len = ese_transceive(&ese, tx_buf, tx_len, rx_buf, sizeof(rx_buf)); in main()
|
/external/wpa_supplicant_8/src/ap/ |
D | gas_serv.c | 1232 struct wpabuf *buf, *tx_buf; in gas_serv_req_local_processing() local 1270 tx_buf = gas_anqp_build_initial_resp_buf( in gas_serv_req_local_processing() 1277 tx_buf = gas_anqp_build_initial_resp_buf( in gas_serv_req_local_processing() 1283 tx_buf = gas_anqp_build_initial_resp_buf( in gas_serv_req_local_processing() 1287 if (!tx_buf) in gas_serv_req_local_processing() 1290 convert_to_protected_dual(tx_buf); in gas_serv_req_local_processing() 1293 wpabuf_head(tx_buf), in gas_serv_req_local_processing() 1294 wpabuf_len(tx_buf)); in gas_serv_req_local_processing() 1297 wpabuf_head(tx_buf), in gas_serv_req_local_processing() 1298 wpabuf_len(tx_buf)); in gas_serv_req_local_processing() [all …]
|
/external/libese/libese/ |
D | ese.c | 84 API int ese_transceive(struct EseInterface *ese, const uint8_t *tx_buf, in ese_transceive() argument 92 recvd = ese->ops->transceive(ese, tx_buf, tx_len, rx_buf, rx_max); in ese_transceive() 97 ese->ops->hw_transmit(ese, tx_buf, tx_len, 1); in ese_transceive()
|
/external/libese/libese-hw/ |
D | ese_hw_fake.c | 110 uint32_t fake_transceive(struct EseInterface *ese, const uint8_t *tx_buf, in fake_transceive() argument 118 uint32_t sent = fake_transmit(ese, tx_buf, tx_len, 0); in fake_transceive()
|
D | ese_hw_echo.c | 155 uint32_t echo_transceive(struct EseInterface *ese, const uint8_t *const tx_buf, in echo_transceive() argument 157 return teq1_transceive(ese, &kTeq1Options, tx_buf, tx_len, rx_buf, rx_len); in echo_transceive()
|
/external/libese/libese-teq1/ |
D | teq1_private.h | 73 uint8_t *tx_buf; member 89 .tx_buf = (uint8_t *const)(TX_BUF), \
|
D | teq1.c | 192 ese_memcpy(frame->INF, state->app_data.tx_buf, len); in teq1_fill_info_block() 198 state->app_data.tx_buf += len; in teq1_fill_info_block() 548 const uint8_t *const tx_buf, uint32_t tx_len, in teq1_transceive() argument 559 TEQ1_INIT_STATE(tx_buf, tx_len, rx_buf, rx_len, card_state); in teq1_transceive() 561 TEQ1_INIT_STATE(tx_buf, tx_len, rx_buf, rx_len, card_state); in teq1_transceive()
|
/external/syslinux/gpxe/src/drivers/net/rtl818x/ |
D | rtl818x.c | 124 struct io_buffer *iob = priv->tx_buf[priv->tx_cons]; in rtl818x_handle_tx() 139 priv->tx_buf[priv->tx_cons] = NULL; in rtl818x_handle_tx() 204 priv->tx_buf[priv->tx_prod] = iob; in rtl818x_tx() 208 entry->tx_buf = cpu_to_le32(virt_to_bus(iob->data)); in rtl818x_tx() 400 if (priv->tx_buf[i]) in rtl818x_free_tx_ring() 401 net80211_tx_complete(dev, priv->tx_buf[i], 0, ECANCELED); in rtl818x_free_tx_ring() 402 priv->tx_buf[i] = NULL; in rtl818x_free_tx_ring()
|
D | rtl818x.h | 241 u32 tx_buf; member 298 struct io_buffer *tx_buf[RTL818X_TX_RING_SIZE]; member
|
/external/libese/libese-hw/nxp/pn80t/ |
D | common.c | 151 const uint8_t *const tx_buf, uint32_t tx_len, in nxp_pn80t_transceive() argument 154 return teq1_transceive(ese, &kTeq1Options, tx_buf, tx_len, rx_buf, rx_len); in nxp_pn80t_transceive()
|
D | linux_spidev.c | 182 .tx_buf = (unsigned long)buf, in spidev_transmit() 212 .tx_buf = 0, in spidev_receive()
|
/external/libese/libese-hw/nxp/include/ese/hw/nxp/pn80t/ |
D | common.h | 36 const uint8_t *const tx_buf, uint32_t tx_len,
|
/external/libese/libese/include/ese/ |
D | ese.h | 72 int ese_transceive(struct EseInterface *ese, const uint8_t *tx_buf, uint32_t tx_len, uint8_t *rx_bu…
|
/external/kernel-headers/original/uapi/linux/spi/ |
D | spidev.h | 90 __u64 tx_buf; member
|
/external/libese/libese-teq1/include/ese/ |
D | teq1.h | 192 const uint8_t *const tx_buf, uint32_t tx_len,
|
/external/syslinux/gpxe/src/drivers/net/ |
D | amd8111e.c | 91 unsigned char tx_buf[NUM_TX_SLOTS][TX_BUF_LEN]; member 541 frame = (struct eth_frame *)lp->tx_buf[index]; in amd8111e_transmit()
|
/external/libese/libese-teq1/tests/ |
D | teq1_unittests.cpp | 221 state_.app_data.tx_buf = tx_data_.data(); in RunRules()
|