Lines Matching refs:apiflags
579 netconn_recv_data(struct netconn *conn, void **new_buf, u8_t apiflags) in netconn_recv_data() argument
598 if (netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK) || 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
721 if (!(apiflags & NETCONN_NOAUTORCVD)) { in netconn_recv_data_tcp()
727 err = netconn_recv_data(conn, (void **)new_buf, apiflags); in netconn_recv_data_tcp()
729 if (!(apiflags & NETCONN_NOAUTORCVD)) { in netconn_recv_data_tcp()
735 if (!(apiflags & NETCONN_NOAUTORCVD)) { in netconn_recv_data_tcp()
746 if (apiflags & NETCONN_NOFIN) { in netconn_recv_data_tcp()
803 netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags) in netconn_recv_tcp_pbuf_flags() argument
808 return netconn_recv_data_tcp(conn, new_buf, apiflags); in netconn_recv_tcp_pbuf_flags()
842 netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apiflags) in netconn_recv_udp_raw_netbuf_flags() argument
847 return netconn_recv_data(conn, (void **)new_buf, apiflags); in netconn_recv_udp_raw_netbuf_flags()
975 u8_t apiflags, size_t *bytes_written) in netconn_write_partly() argument
980 return netconn_write_vectors_partly(conn, &vector, 1, apiflags, bytes_written); in netconn_write_partly()
998 u8_t apiflags, size_t *bytes_written) in netconn_write_vectors_partly() argument
1008 dontblock = netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK); in netconn_write_vectors_partly()
1048 API_MSG_VAR_REF(msg).msg.w.apiflags = apiflags; in netconn_write_vectors_partly()