Searched refs:netconn_recv (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dapi.h147 struct netbuf * netconn_recv (struct netconn *conn);
/vbox/src/VBox/Devices/Network/lwip/vbox/include/
H A Dlwipopts.h173 #define netconn_recv lwip_netconn_recv macro
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dapi.h259 err_t netconn_recv(struct netconn *conn, struct netbuf **new_buf);
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/
H A Dlwip-namespace.h71 #define netconn_recv lwip_netconn_recv macro
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dapi_lib.c501 netconn_recv(struct netconn *conn) function
590 LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_recv: received %p (err %d)\n", (void *)buf, conn->err));
H A Dsockets.c383 buf = netconn_recv(sock->conn);
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dapi_lib.c364 LWIP_ERROR("netconn_recv: invalid pointer", (new_buf != NULL), return ERR_ARG;);
366 LWIP_ERROR("netconn_recv: invalid conn", (conn != NULL), return ERR_ARG;);
451 LWIP_ERROR("netconn_recv: invalid conn", (conn != NULL) &&
466 netconn_recv(struct netconn *conn, struct netbuf **new_buf) function
473 LWIP_ERROR("netconn_recv: invalid pointer", (new_buf != NULL), return ERR_ARG;);
475 LWIP_ERROR("netconn_recv: invalid conn", (conn != NULL), return ERR_ARG;);
H A Dsockets.c674 err = netconn_recv(sock->conn, (struct netbuf **)&buf);
676 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom: netconn_recv err=%d, netbuf=%p\n",
2464 err = netconn_recv(sock->conn, &rxbuf);

Completed in 59 milliseconds