Lines Matching refs:apiflags
569 * @param apiflags flags that control function behaviour. For now only:
579 netconn_recv_data(struct netconn *conn, void **new_buf, u8_t apiflags)
598 if (netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK) ||
703 netconn_recv_data_tcp(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags)
721 if (!(apiflags & NETCONN_NOAUTORCVD)) {
727 err = netconn_recv_data(conn, (void **)new_buf, apiflags);
729 if (!(apiflags & NETCONN_NOAUTORCVD)) {
735 if (!(apiflags & NETCONN_NOAUTORCVD)) {
746 if (apiflags & NETCONN_NOFIN) {
796 * @param apiflags flags that control function behaviour. For now only:
803 netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags)
808 return netconn_recv_data_tcp(conn, new_buf, apiflags);
835 * @param apiflags flags that control function behaviour. For now only:
842 netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apiflags)
847 return netconn_recv_data(conn, (void **)new_buf, apiflags);
966 * @param apiflags combination of following flags :
975 u8_t apiflags, size_t *bytes_written)
980 return netconn_write_vectors_partly(conn, &vector, 1, apiflags, bytes_written);
989 * @param apiflags combination of following flags :
998 u8_t apiflags, size_t *bytes_written)
1008 dontblock = netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK);
1048 API_MSG_VAR_REF(msg).msg.w.apiflags = apiflags;