Lines Matching refs:new_buf
337 * @param new_buf pointer where a new pbuf/netbuf is stored when received data
342 netconn_recv_data(struct netconn *conn, void **new_buf)
351 LWIP_ERROR("netconn_recv: invalid pointer", (new_buf != NULL), return ERR_ARG;);
352 *new_buf = NULL;
422 *new_buf = buf;
431 * @param new_buf pointer where a new pbuf is stored when received data
437 netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf)
442 return netconn_recv_data(conn, (void **)new_buf);
449 * @param new_buf pointer where a new netbuf is stored when received data
454 netconn_recv(struct netconn *conn, struct netbuf **new_buf)
461 LWIP_ERROR("netconn_recv: invalid pointer", (new_buf != NULL), return ERR_ARG;);
462 *new_buf = NULL;
491 *new_buf = buf;
501 return netconn_recv_data(conn, (void **)new_buf);