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

  /external/libese/libese-hw/
ese_hw_fake.c 116 const struct EseSgBuffer *tx_buf = tx_bufs; local
122 while (tx_buf < tx_bufs + tx_seg) {
124 fake_transmit(ese, tx_buf->base + offset, tx_buf->len - offset, 0);
125 if (sent != tx_buf->len - offset) {
126 offset = tx_buf->len - sent;
137 tx_buf++;
  /external/libese/tools/ese_relay/
ese_relay.c 90 uint8_t tx_buf[4096]; local
122 if (tx_len > sizeof(tx_buf)) {
128 ssize_t bytes = read(client_fd, tx_buf + data_read, tx_len - data_read);
142 printf("%.2X ", tx_buf[i]);
147 printf("Received a control request: %x\n", tx_buf[0]);
149 switch (tx_buf[0]) {
166 ALOGE("Unknown control byte seen: %x", tx_buf[0]);
171 rx_len = ese_transceive(&ese, tx_buf, tx_len, rx_buf, sizeof(rx_buf));
  /device/google/marlin/kernel-headers/linux/spi/
spi-contexthub.h 39 __u64 tx_buf; member in struct:spi_ioc_transfer
  /device/google/marlin/original-kernel-headers/linux/spi/
spi-contexthub.h 41 __u64 tx_buf; member in struct:spi_ioc_transfer
  /external/u-boot/drivers/net/
bcm-sf2-eth.h 31 uint8_t *tx_buf; member in struct:eth_dma
altera_tse.c 315 u32 tx_buf = virt_to_phys(packet); local
318 writel(tx_buf, &desc->read_addr_lo);
480 unsigned long tx_buf = (unsigned long)packet; local
482 flush_dcache_range(tx_buf, tx_buf + length);
  /bionic/libc/kernel/uapi/linux/spi/
spidev.h 41 __u64 tx_buf; member in struct:spi_ioc_transfer
  /external/kernel-headers/original/uapi/linux/spi/
spidev.h 60 * @tx_buf: Holds pointer to userspace buffer with transmit data, or null.
92 __u64 tx_buf; member in struct:spi_ioc_transfer
  /external/u-boot/drivers/tpm/
tpm2_tis_spi.c 77 u8 tx_buf[MAX_SPI_FRAMESIZE]; local
95 tx_buf[0] = (in ? BIT(7) : 0) | (transfer_len - 1);
96 tx_buf[1] = 0xD4;
97 tx_buf[2] = addr >> 8;
98 tx_buf[3] = addr;
100 ret = spi_xfer(slave, 4 * 8, tx_buf, rx_buf, SPI_XFER_BEGIN);
135 memcpy(tx_buf, out, transfer_len);
140 out ? tx_buf : NULL,
tpm_tis_st33zp24_spi.c 75 u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE]; member in struct:st33zp24_spi_phy
119 u8 *tx_buf = (u8 *)phy->tx_buf; local
122 tx_buf[total_length++] = TPM_WRITE_DIRECTION | LOCALITY0;
123 tx_buf[total_length++] = tpm_register;
126 tx_buf[total_length++] = tpm_size >> 8;
127 tx_buf[total_length++] = tpm_size;
129 memcpy(tx_buf + total_length, tpm_data, tpm_size);
132 memset(tx_buf + total_length, TPM_DUMMY_BYTE, phy->latency);
140 ret = spi_xfer(slave, total_length * 8, tx_buf, rx_buf
170 u8 *tx_buf = (u8 *)phy->tx_buf; local
    [all...]
  /external/u-boot/drivers/spi/
zynq_spi.c 217 const u8 *tx_buf = dout; local
237 if (tx_buf)
238 buf = *tx_buf++;
zynq_qspi.c 90 const void *tx_buf; member in struct:zynq_qspi_priv
226 if (priv->tx_buf) {
229 *data = *((u8 *)priv->tx_buf);
230 priv->tx_buf += 1;
234 *data = *((u16 *)priv->tx_buf);
235 priv->tx_buf += 2;
239 *data = *((u16 *)priv->tx_buf);
240 priv->tx_buf += 2;
241 *data |= (*((u8 *)priv->tx_buf) << 16);
242 priv->tx_buf += 1
    [all...]
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 1453 struct wpabuf *buf, *tx_buf; local
1529 struct wpabuf *tx_buf; local
1736 struct wpabuf *buf, *tx_buf; local
    [all...]

Completed in 550 milliseconds