Home
last modified time | relevance | path

Searched refs:fcntl (Results 1 – 23 of 23) sorted by relevance

/AliOS-Things-master/components/mbedtls/platform/aos/library/
A Dnet_sockets.c257 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 Dnet_sockets.c205 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 Dnet_sockets.c289 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 DSDL_dspaudio.c114 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 DREADME.md192 #include <fcntl.h>
226 由于使用了标准文件系统的O_RDWR相关定义,需要包含#include "fcntl.h"
/AliOS-Things-master/solutions/helloworld_demo/
A DREADME.md191 #include <fcntl.h>
225 由于使用了标准文件系统的O_RDWR相关定义,需要包含#include "fcntl.h"
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_config.h-vms4 /* Define to 1 if you have the <fcntl.h> header file. */
A Dtif_config.h.cmake.in26 /* Define to 1 if you have the <fcntl.h> header file. */
A Dtif_config.h.in37 /* Define to 1 if you have the <fcntl.h> header file. */
/AliOS-Things-master/solutions/linkkit_genie_demo/
A DREADME.md191 #include <fcntl.h>
225 由于使用了标准文件系统的O_RDWR相关定义,需要包含#include "fcntl.h"
/AliOS-Things-master/components/netmgr/net/include/sys/
A Dsocket.h75 #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 Dsockets.h480 #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 DSConstruct134 conf.CheckCHeader('fcntl.h')
A DCMakeLists.txt213 check_include_file(fcntl.h HAVE_FCNTL_H)
A Dconfigure.ac177 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 DSDL_ibus.c425 fcntl(inotify_fd, F_SETFL, O_NONBLOCK); in SDL_IBus_Init()
/AliOS-Things-master/components/linksdk/portfiles/aiot_port/
A Daos_port.c292 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 DSDL_sysjoystick.c517 fcntl(fd, F_SETFL, O_NONBLOCK);
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dminigzip.c-bak33 # include <fcntl.h>
/AliOS-Things-master/components/websocket/src/
A Drws_socketpriv.c592 fcntl(s->socket, F_SETFL, O_NONBLOCK); in rws_socket_connect_to_host()
/AliOS-Things-master/components/SDL2/src/joystick/linux/
A DSDL_sysjoystick.c835 fcntl(fd, F_SETFL, O_NONBLOCK); in LINUX_JoystickOpen()
/AliOS-Things-master/components/SDL2/src/image/external/
A Dtiff-4.0.9-win32config.patch114 +/* Define to 1 if you have the <fcntl.h> header file. */
/AliOS-Things-master/components/mbedtls/
A DChangeLog796 * Fix net_would_block() to avoid modification by errno through fcntl() call.

Completed in 29 milliseconds