Searched refs:netconn_is_nonblocking (Results 1 – 4 of 4) sorted by relevance
262 #define netconn_is_nonblocking(conn) (((conn)->flags & NETCONN_FLAG_NON_BLOCKING) != 0) macro
610 dontblock = netconn_is_nonblocking(conn) || (apiflags & NETCONN_DONTBLOCK); in netconn_write_partly()
329 if (netconn_is_nonblocking(sock->conn) && (sock->rcvevent <= 0)) { in lwip_accept()583 if (((flags & MSG_DONTWAIT) || netconn_is_nonblocking(sock->conn)) && in lwip_recvfrom()2358 ret = netconn_is_nonblocking(sock->conn) ? O_NONBLOCK : 0;
1011 u8_t non_blocking = netconn_is_nonblocking(msg->conn);1215 u8_t dontblock = netconn_is_nonblocking(conn) ||
Completed in 11 milliseconds