Lines Matching full:dout
232 * The source of the outgoing bits is the "dout" parameter and the
233 * destination of the input bits is the "din" parameter. Note that "dout"
241 * @dout: Pointer to a string of bits to send out. The bits are
248 int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
303 unsigned char dout[2]; in spi_w8r8() local
307 dout[0] = byte; in spi_w8r8()
308 dout[1] = 0; in spi_w8r8()
310 ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END); in spi_w8r8()
381 * The source of the outgoing bits is the "dout" parameter and the
383 * "dout" and "din" can point to the same memory location, in which
390 * @dout: Pointer to a string of bits to send out. The bits are
397 int (*xfer)(struct udevice *dev, unsigned int bitlen, const void *dout,
458 * The source of the outgoing bits is the "dout" parameter and the
460 * "dout" and "din" can point to the same memory location, in which
467 * @dout: Pointer to a string of bits sent to the device. The
476 const void *dout, void *din, unsigned long flags);
616 * The source of the outgoing bits is the "dout" parameter and the
617 * destination of the input bits is the "din" parameter. Note that "dout"
625 * @dout: Pointer to a string of bits to send out. The bits are
633 const void *dout, void *din, unsigned long flags);