Home
last modified time | relevance | path

Searched refs:__oflag (Results 1 – 4 of 4) sorted by relevance

/third_party/NuttX/fs/vfs/
Dfs_open.c342 int open64 (const char *__path, int __oflag, ...) in open64() argument
347 va_start(ap, __oflag); in open64()
350 if ((__oflag & (O_WRONLY | O_CREAT)) != 0) in open64()
356 return open (__path, ((unsigned int)__oflag) | O_LARGEFILE, mode); in open64()
/third_party/libwebsockets/lib/core/
Dlibwebsockets.c201 int lws_open(const char *__file, int __oflag, ...) in lws_open() argument
206 va_start(ap, __oflag); in lws_open()
207 if (((__oflag & O_CREAT) == O_CREAT) in lws_open()
209 || ((__oflag & O_TMPFILE) == O_TMPFILE) in lws_open()
214 n = open(__file, __oflag, va_arg(ap, uint32_t)); in lws_open()
222 n = open(__file, __oflag, (mode_t)va_arg(ap, unsigned int)); in lws_open()
225 n = open(__file, __oflag); in lws_open()
/third_party/boost/libs/random/src/
Drandom_device.cpp171 extern int open(const char *__file, int __oflag, ...);
/third_party/libwebsockets/include/libwebsockets/
Dlws-misc.h850 lws_open(const char *__file, int __oflag, ...);