Home
last modified time | relevance | path

Searched refs:tx_buf (Results 1 – 17 of 17) sorted by relevance

/external/libese/tools/ese_relay/
Dese_relay.c91 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/
Dgas_serv.c1232 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/
Dese.c84 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/
Dese_hw_fake.c110 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()
Dese_hw_echo.c155 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/
Dteq1_private.h73 uint8_t *tx_buf; member
89 .tx_buf = (uint8_t *const)(TX_BUF), \
Dteq1.c192 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/
Drtl818x.c124 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()
Drtl818x.h241 u32 tx_buf; member
298 struct io_buffer *tx_buf[RTL818X_TX_RING_SIZE]; member
/external/libese/libese-hw/nxp/pn80t/
Dcommon.c151 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()
Dlinux_spidev.c182 .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/
Dcommon.h36 const uint8_t *const tx_buf, uint32_t tx_len,
/external/libese/libese/include/ese/
Dese.h72 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/
Dspidev.h90 __u64 tx_buf; member
/external/libese/libese-teq1/include/ese/
Dteq1.h192 const uint8_t *const tx_buf, uint32_t tx_len,
/external/syslinux/gpxe/src/drivers/net/
Damd8111e.c91 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/
Dteq1_unittests.cpp221 state_.app_data.tx_buf = tx_data_.data(); in RunRules()