Home
last modified time | relevance | path

Searched refs:F_GETFL (Results 1 – 13 of 13) sorted by relevance

/reactos/dll/3rdparty/mbedtls/
H A Dnet_sockets.c347 if( ( fcntl( ctx->fd, F_GETFL ) & O_NONBLOCK ) != O_NONBLOCK ) in net_would_block()
496 return( fcntl( ctx->fd, F_SETFL, fcntl( ctx->fd, F_GETFL ) & ~O_NONBLOCK ) ); in mbedtls_net_set_block()
507 return( fcntl( ctx->fd, F_SETFL, fcntl( ctx->fd, F_GETFL ) | O_NONBLOCK ) ); in mbedtls_net_set_nonblock()
/reactos/modules/rosapps/applications/net/ncftp/sio/
H A DSConnect.c65 if (fcntl(sfd, F_GETFL, &opt) < 0) { in SConnect()
/reactos/drivers/network/tcpip/lwip/src/include/lwip/
H A Dsockets.h443 #ifndef F_GETFL
444 #define F_GETFL 3 macro
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/
H A Drdpsnd_oss.c71 fcntl(This->dsp_, F_SETFL, fcntl(This->dsp_, F_GETFL) | O_NONBLOCK); in wave_out_open()
H A Drdpsnd_sun.c67 fcntl(This->dsp_, F_SETFL, fcntl(This->dsp_, F_GETFL) | O_NONBLOCK); in wave_out_open()
/reactos/sdk/lib/3rdparty/stlport/src/details/
H A Dfstream_unistd.cpp232 int mode = fcntl(file_no, F_GETFL); in _M_open()
/reactos/sdk/lib/3rdparty/adns/client/
H A Dadnsresfilter.c89 r= fcntl(fd,F_GETFL); in nonblock()
/reactos/dll/3rdparty/libtirpc/src/
H A Dsvc_vc.c369 flags = fcntl(sock, F_GETFL, 0);
/reactos/sdk/lib/3rdparty/adns/src/
H A Dsetup.c464 r= fcntl(fd,F_GETFL,0); if (r<0) return errno; in adns__setnonblock()
/reactos/drivers/network/tcpip/lwip/test/unit/api/
H A Dtest_sockets.c332 opt = lwip_fcntl(s2, F_GETFL, 0); in test_sockets_msgapi_tcp()
/reactos/sdk/lib/3rdparty/libmpg123/
H A Dreaders.c1049 flags = fcntl(fr->rdat.filept, F_GETFL); in default_init()
/reactos/sdk/lib/3rdparty/libxml2/
H A Dnanohttp.c908 if ((status = fcntl(s, F_GETFL, 0)) != -1) { in xmlNanoHTTPConnectAttempt()
/reactos/drivers/network/tcpip/lwip/src/api/
H A Dsockets.c3892 case F_GETFL: in lwip_fcntl()