/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/ |
H A D | raw.h | 127 raw_recv_fn recv; member 128 /* user-supplied argument for the recv callback */ 168 void raw_recv (struct raw_pcb *pcb, raw_recv_fn recv, void *recv_arg);
|
H A D | udp.h | 111 udp_recv_fn recv; member 112 /* user-supplied argument for the recv callback */ 136 void udp_recv (struct udp_pcb *pcb, udp_recv_fn recv,
|
H A D | tcp.h | 505 tcp_recv_fn recv; member 674 * @param pcb Indicates the tcp_pcb to set the recv callback 675 * @param recv A callback function to call for this PCB when data is received. 677 void tcp_recv (struct tcp_pcb *pcb, tcp_recv_fn recv);
|
H A D | stats.h | 67 STAT_COUNTER recv; /* Received packets. */ member 105 STAT_COUNTER recv; /* Received packets. */ member
|
H A D | sockets.h | 313 /* Flags we can use with send and recv. */ 819 #define lwip_recv recv 1410 * and limits the remote sender for subsequent recv() functions. 1515 * This API is used to recieve a message from connected socket. The recv() function shall receive a message 1519 * recv() shall block until a message arrives. If no messages are available at the socket and O_NONBLOCK 1520 * is set on the socket's file descriptor, recv() shall fail and set errno to [EWOULDBLOCK]. 1528 * MSG_PEEK : Peeks at an incoming message. The data is treated as unread and the next recv() 1537 * and the peer has performed an orderly shutdown, recv() returns 0. \n 1541 * @li The recv() function fails if: 1555 * @li The recv() functio 2469 #define recv global() macro [all...] |
/device/soc/hisilicon/common/hal/display/source/display_device/src/core/ |
H A D | hdi_netlink_monitor.cpp | 64 recv(mScoketFd, &buf, sizeof(buf), 0);
in MonitorThread()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/priv/ |
H A D | tcp_priv.h | 264 if ((pcb)->recv != NULL) { \ 265 (ret) = (pcb)->recv((pcb)->callback_arg, (pcb), (p), (err)); \ 273 if (((pcb)->recv != NULL)) { \ 274 (ret) = (pcb)->recv((pcb)->callback_arg, (pcb), NULL, ERR_OK); \
|
/device/soc/hisilicon/common/platform/hieth-sf/include/internal/ |
H A D | eth_drv.h | 45 EthRecv recv; member
|
/device/soc/hisilicon/common/platform/uart/ |
H A D | uart_pl011.h | 152 RecvNotify recv; member
|
H A D | uart_pl011.c | 60 udd->recv(udd, buf, count); in Pl011Irq()
|
H A D | uart_hi35xx.c | 467 udd->recv = PL011UartRecvNotify; in Hi35xxAttach()
|
/device/qemu/drivers/uart/ |
H A D | uart_pl011.h | 152 RecvNotify recv; member
|
H A D | uart_pl011.c | 61 udd->recv(udd, buf, count); in Pl011Irq()
|
H A D | uart.c | 378 udd->recv = PL011UartRecvNotify; in Hi35xxAttach()
|
/device/soc/hisilicon/hi3861v100/hi3861_adapter/kal/posix/src/ |
H A D | file.c | 234 return recv(fd, buf, nbytes, 0); in read()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/ |
H A D | hi_net_api.h | 767 int recv(int s, void *mem, size_t len, int flags);
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/sys/ |
H A D | socket.h | 765 * Peeks at an incoming message. The data is treated as unread and the next recv() or similar function shall still return this data. 772 * <li>If the apps don't read the packet from the socket and the recv buffered 781 * @retval #ssize_t On success, recv() shall return the length of the message in bytes. On failure, -1 shall be returned. 803 ssize_t recv (int, void *, size_t, int); 876 * <li>If the apps don't read the packet from the socket and the recv buffered 904 * @see recv
|
/device/soc/rockchip/common/sdk_linux/net/bluetooth/ |
H A D | l2cap_sock.c | 1545 /* For ERTM, handle one skb that doesn't fit into the recv in l2cap_sock_recv_cb() 1747 .recv = l2cap_sock_recv_cb,
|