Searched refs:F_GETFL (Results 1 – 10 of 10) sorted by relevance
/AliOS-Things-master/components/mbedtls/platform/aos/library/ |
A D | net_sockets.c | 257 if( ( fcntl( ctx->fd, F_GETFL, 0) & O_NONBLOCK ) != O_NONBLOCK ) in net_would_block() 280 flags = fcntl( ctx->fd, F_GETFL, 0 ); in mbedtls_net_set_block() 290 flags = fcntl( ctx->fd, F_GETFL, 0 ); in mbedtls_net_set_nonblock()
|
/AliOS-Things-master/components/libc_stub/compilers/armlibc/sys/ |
A D | fcntl.h | 42 #define F_GETFL 3 macro
|
/AliOS-Things-master/components/libc_stub/compilers/iar/sys/ |
A D | fcntl.h | 42 #define F_GETFL 3 macro
|
/AliOS-Things-master/components/mbedtls/platform/yoc/ |
A D | net_sockets.c | 205 if ( ( fcntl( ctx->fd, F_GETFL, 0) & O_NONBLOCK ) != O_NONBLOCK ) { in net_would_block() 312 return ( fcntl( ctx->fd, F_SETFL, fcntl( ctx->fd, F_GETFL, 0 ) & ~O_NONBLOCK ) ); in mbedtls_net_set_block() 317 return ( fcntl( ctx->fd, F_SETFL, fcntl( ctx->fd, F_GETFL, 0 ) | O_NONBLOCK ) ); in mbedtls_net_set_nonblock()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | net_sockets.c | 289 if( ( fcntl( ctx->fd, F_GETFL ) & O_NONBLOCK ) != O_NONBLOCK ) in net_would_block() 437 return( fcntl( ctx->fd, F_SETFL, fcntl( ctx->fd, F_GETFL ) & ~O_NONBLOCK ) ); in mbedtls_net_set_block() 448 return( fcntl( ctx->fd, F_SETFL, fcntl( ctx->fd, F_GETFL ) | O_NONBLOCK ) ); in mbedtls_net_set_nonblock()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/ |
A D | sockets.h | 487 #ifndef F_GETFL 488 #define F_GETFL 3 macro
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | sockets.h | 387 #ifndef F_GETFL 388 #define F_GETFL 3 macro
|
/AliOS-Things-master/components/SDL2/src/audio/dsp/ |
A D | SDL_dspaudio.c | 114 ctlflags = fcntl(this->hidden->audio_fd, F_GETFL); in DSP_OpenDevice()
|
/AliOS-Things-master/components/linksdk/portfiles/aiot_port/ |
A D | aos_port.c | 292 res = fcntl(fd, F_GETFL, 0); in _core_sysdep_network_connect()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/api/ |
A D | sockets.c | 3270 case F_GETFL: in lwip_fcntl()
|
Completed in 21 milliseconds