Searched refs:new_buf (Results 1 – 2 of 2) sorted by relevance
/btstack/3rd-party/lwip/core/src/api/ |
H A D | api_lib.c | 579 netconn_recv_data(struct netconn *conn, void **new_buf, u8_t apiflags) in netconn_recv_data() argument 584 LWIP_ERROR("netconn_recv: invalid pointer", (new_buf != NULL), return ERR_ARG;); in netconn_recv_data() 585 *new_buf = NULL; in netconn_recv_data() 670 *new_buf = buf; in netconn_recv_data() 703 netconn_recv_data_tcp(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags) in netconn_recv_data_tcp() argument 727 err = netconn_recv_data(conn, (void **)new_buf, apiflags); in netconn_recv_data_tcp() 734 buf = *new_buf; in netconn_recv_data_tcp() 782 netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf) in netconn_recv_tcp_pbuf() argument 787 return netconn_recv_data_tcp(conn, new_buf, 0); in netconn_recv_tcp_pbuf() 803 netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags) in netconn_recv_tcp_pbuf_flags() argument [all …]
|
/btstack/3rd-party/lwip/core/src/include/lwip/ |
H A D | api.h | 334 err_t netconn_recv(struct netconn *conn, struct netbuf **new_buf); 335 err_t netconn_recv_udp_raw_netbuf(struct netconn *conn, struct netbuf **new_buf); 336 err_t netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apifl… 337 err_t netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf); 338 err_t netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags);
|