Searched refs:recv (Results 1 - 25 of 108) sorted by relevance

12345

/u-boot/drivers/tpm/
H A Dtpm2_tis_sandbox.c376 static int sandbox_tpm2_fill_buf(u8 *recv, size_t *recv_len, u16 tag, u32 rc) argument
381 put_unaligned_be16(tag, recv);
382 recv += sizeof(tag);
385 put_unaligned_be32(*recv_len, recv);
386 recv += sizeof(u32);
389 put_unaligned_be32(rc, recv);
390 recv += sizeof(rc);
393 *recv = '\0';
425 u8 *recv = recvbuf; local
450 sandbox_tpm2_fill_buf(recv, recv_le
[all...]
H A Dtpm-uclass.c98 if (!ops->send || !ops->recv)
122 ret = ops->recv(dev, priv->buf, sizeof(priv->buf));
H A Dtpm2_tis_mmio.c135 .recv = tpm_tis_recv,
H A Dtpm2_tis_i2c.c142 .recv = tpm_tis_recv,
/u-boot/include/
H A Dmailbox-uclass.h69 * recv - Receive any available message from the channel.
79 int (*recv)(struct mbox_chan *chan, void *data); member in struct:mbox_ops
H A Dtpm-common.h144 * recv() - receive a response from the TPM
154 int (*recv)(struct udevice *dev, u8 *recvbuf, size_t max_size); member in struct:tpm_ops
171 * to send(), recv() and cleanup(). It should handle all aspects of
261 * recv() to get the reply. If recv() returns -EAGAIN then it will delay a
262 * short time and then call recv() again.
264 * Regardless of whether recv() completes successfully, it will then call
/u-boot/board/traverse/common/
H A Dten64_controller.c100 struct t64uc_message send, recv; local
125 return_message.buf = (void *)&recv;
132 if (recv.preamb != T64_UC_API_HEADER_PREAMB) {
137 if (recv.cmd != uc_cmd) {
139 __func__, recv.cmd, uc_cmd);
142 if (recv.len != expected_return_len) {
144 __func__, recv.len, expected_return_len);
147 memcpy(return_data, recv.data, expected_return_len);
/u-boot/arch/arm/mach-bcm283x/
H A Dmbox.c17 int bcm2835_mbox_call_raw(u32 chan, u32 send, u32 *recv) argument
86 *recv = BCM2835_MBOX_UNPACK_DATA(val);
/u-boot/drivers/mailbox/
H A Dsandbox-mbox.c94 .recv = sandbox_mbox_recv,
H A Dapple-mbox.c66 .recv = apple_mbox_recv,
H A Dmailbox-uclass.c145 ret = ops->recv(chan, data);
H A Dstm32-ipcc.c155 .recv = stm32_ipcc_recv,
H A Dtegra-hsp.c183 .recv = tegra_hsp_recv,
/u-boot/common/
H A Dkgdb.c292 unsigned char ch, recv; local
309 recv = getDebugChar();
310 } while ((recv & 0x7f) != '+');
/u-boot/drivers/net/octeontx2/
H A Drvu_pf.c47 .recv = nix_lf_recv,
/u-boot/drivers/net/
H A Daltera_tse.h209 int (*recv)(struct udevice *dev, int flags, uchar **packetp); member in struct:tse_ops
H A Daltera_tse.c193 debug("recv %d bytes\n", packet_length);
221 debug("recv setup\n");
347 debug("recv %d bytes, status %08x\n", length, status);
371 debug("recv setup\n");
488 return priv->ops->recv(dev, flags, packetp);
559 .recv = altera_tse_recv_sgdma,
566 .recv = altera_tse_recv_msgdma,
651 /* allocate recv packet buffer */
684 .recv = altera_tse_recv,
H A Dsandbox-raw.c148 .recv = sb_eth_raw_recv,
H A Dliteeth.c161 .recv = liteeth_recv,
H A Dbcm-sf2-eth.c232 dev->recv = bcm_sf2_eth_receive;
/u-boot/drivers/virtio/
H A Dvirtio_net.c222 .recv = virtio_net_recv,
/u-boot/net/
H A Ddsa-uclass.c176 length = eth_get_ops(master)->recv(master, flags, packetp);
255 .recv = dsa_port_recv,
/u-boot/drivers/usb/eth/
H A Dlan75xx.c294 .recv = lan7x_eth_recv,
/u-boot/arch/arm/mach-bcm283x/include/mach/
H A Dmbox.h529 int bcm2835_mbox_call_raw(u32 chan, u32 send, u32 *recv);
/u-boot/drivers/net/pfe_eth/
H A Dpfe_eth.c280 .recv = pfe_eth_recv,

Completed in 126 milliseconds

12345