/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() 283 return fcntl( ctx->fd, F_SETFL, flags ); in mbedtls_net_set_block() 290 flags = fcntl( ctx->fd, F_GETFL, 0 ); in mbedtls_net_set_nonblock() 293 return fcntl( ctx->fd, F_SETFL, flags ); in mbedtls_net_set_nonblock()
|
/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/SDL2/src/audio/dsp/ |
A D | SDL_dspaudio.c | 114 ctlflags = fcntl(this->hidden->audio_fd, F_GETFL); in DSP_OpenDevice() 116 if (fcntl(this->hidden->audio_fd, F_SETFL, ctlflags) < 0) { in DSP_OpenDevice()
|
/AliOS-Things-master/solutions/amp_demo/ |
A D | README.md | 192 #include <fcntl.h> 226 由于使用了标准文件系统的O_RDWR相关定义,需要包含#include "fcntl.h"
|
/AliOS-Things-master/solutions/helloworld_demo/ |
A D | README.md | 191 #include <fcntl.h> 225 由于使用了标准文件系统的O_RDWR相关定义,需要包含#include "fcntl.h"
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_config.h-vms | 4 /* Define to 1 if you have the <fcntl.h> header file. */
|
A D | tif_config.h.cmake.in | 26 /* Define to 1 if you have the <fcntl.h> header file. */
|
A D | tif_config.h.in | 37 /* Define to 1 if you have the <fcntl.h> header file. */
|
/AliOS-Things-master/solutions/linkkit_genie_demo/ |
A D | README.md | 191 #include <fcntl.h> 225 由于使用了标准文件系统的O_RDWR相关定义,需要包含#include "fcntl.h"
|
/AliOS-Things-master/components/netmgr/net/include/sys/ |
A D | socket.h | 75 #define lwip_fcntl fcntl 202 #define fcntl(s,cmd,val) _fcntl_r(0, s,cmd,val) macro
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | sockets.h | 480 #define lwip_fcntl fcntl 560 #define fcntl(s,cmd,val) lwip_fcntl(s,cmd,val) macro
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | SConstruct | 134 conf.CheckCHeader('fcntl.h')
|
A D | CMakeLists.txt | 213 check_include_file(fcntl.h HAVE_FCNTL_H)
|
A D | configure.ac | 177 AC_CHECK_HEADERS([assert.h fcntl.h io.h limits.h malloc.h search.h sys/time.h unistd.h])
|
/AliOS-Things-master/components/SDL2/src/core/linux/ |
A D | SDL_ibus.c | 425 fcntl(inotify_fd, F_SETFL, O_NONBLOCK); in SDL_IBus_Init()
|
/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() 294 res = fcntl(fd, F_SETFL, sock_option | O_NONBLOCK); in _core_sysdep_network_connect()
|
/AliOS-Things-master/components/SDL2/src/joystick/bsd/ |
A D | SDL_sysjoystick.c | 517 fcntl(fd, F_SETFL, O_NONBLOCK);
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | minigzip.c-bak | 33 # include <fcntl.h>
|
/AliOS-Things-master/components/websocket/src/ |
A D | rws_socketpriv.c | 592 fcntl(s->socket, F_SETFL, O_NONBLOCK); in rws_socket_connect_to_host()
|
/AliOS-Things-master/components/SDL2/src/joystick/linux/ |
A D | SDL_sysjoystick.c | 835 fcntl(fd, F_SETFL, O_NONBLOCK); in LINUX_JoystickOpen()
|
/AliOS-Things-master/components/SDL2/src/image/external/ |
A D | tiff-4.0.9-win32config.patch | 114 +/* Define to 1 if you have the <fcntl.h> header file. */
|
/AliOS-Things-master/components/mbedtls/ |
A D | ChangeLog | 796 * Fix net_would_block() to avoid modification by errno through fcntl() call.
|