Home
last modified time | relevance | path

Searched refs:oflag (Results 1 – 25 of 28) sorted by relevance

12

/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/pthread/
A Dnot-cancel.h45 # define __openat_nocancel(fd, fname, oflag, mode) \ argument
46 openat (fd, fname, oflag, mode)
48 openat64 (fd, fname, oflag, mode)
51 #define openat_not_cancel(fd, fname, oflag, mode) \ argument
52 __openat_nocancel (fd, fname, oflag, mode)
53 #define openat_not_cancel_3(fd, fname, oflag) \ argument
54 __openat_nocancel (fd, fname, oflag, 0)
55 #define openat64_not_cancel(fd, fname, oflag, mode) \ argument
56 __openat64_nocancel (fd, fname, oflag, mode)
57 #define openat64_not_cancel_3(fd, fname, oflag) \ argument
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/sysdeps/pthread/
A Dnot-cancel.h45 # define __openat_nocancel(fd, fname, oflag, mode) \ argument
46 openat (fd, fname, oflag, mode)
48 openat64 (fd, fname, oflag, mode)
51 #define openat_not_cancel(fd, fname, oflag, mode) \ argument
52 __openat_nocancel (fd, fname, oflag, mode)
53 #define openat_not_cancel_3(fd, fname, oflag) \ argument
54 __openat_nocancel (fd, fname, oflag, 0)
55 #define openat64_not_cancel(fd, fname, oflag, mode) \ argument
56 __openat64_nocancel (fd, fname, oflag, mode)
57 #define openat64_not_cancel_3(fd, fname, oflag) \ argument
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/
A Dnot-cancel.h45 # define __openat_nocancel(fd, fname, oflag, mode) \ argument
46 openat (fd, fname, oflag, mode)
48 openat64 (fd, fname, oflag, mode)
51 #define openat_not_cancel(fd, fname, oflag, mode) \ argument
52 __openat_nocancel (fd, fname, oflag, mode)
53 #define openat_not_cancel_3(fd, fname, oflag) \ argument
54 __openat_nocancel (fd, fname, oflag, 0)
55 #define openat64_not_cancel(fd, fname, oflag, mode) \ argument
56 __openat64_nocancel (fd, fname, oflag, mode)
57 #define openat64_not_cancel_3(fd, fname, oflag) \ argument
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Dnot-cancel.h46 # define __openat_nocancel(fd, fname, oflag, mode) \
47 openat (fd, fname, oflag, mode)
49 openat64 (fd, fname, oflag, mode)
52 #define openat_not_cancel(fd, fname, oflag, mode) \
53 __openat_nocancel (fd, fname, oflag, mode)
54 #define openat_not_cancel_3(fd, fname, oflag) \
55 __openat_nocancel (fd, fname, oflag, 0)
56 #define openat64_not_cancel(fd, fname, oflag, mode) \
57 __openat64_nocancel (fd, fname, oflag, mode)
58 #define openat64_not_cancel_3(fd, fname, oflag) \
[all …]
A Dopen.c28 int open(const char *file, int oflag, ...)
32 if (oflag & O_CREAT) {
34 va_start(arg, oflag);
41 return __NC(open)(file, oflag, mode);
43 return openat(AT_FDCWD, file, oflag, mode);
49 int result = __NC(open)(file, oflag, mode);
51 int result = openat(AT_FDCWD, file, oflag, mode);
A Dopen64.c15 int open64(const char *file, int oflag, ...) in open64() argument
19 if (oflag & O_CREAT) { in open64()
21 va_start (arg, oflag); in open64()
26 return openat(AT_FDCWD, file, oflag | O_LARGEFILE, mode); in open64()
28 return open(file, oflag | O_LARGEFILE, mode); in open64()
A Dopenat64.c14 static int __openat64(int fd, const char *file, int oflag, mode_t mode) in __openat64() argument
16 return openat(fd, file, oflag | O_LARGEFILE, mode); in __openat64()
A Dopenat.c14 static __inline__ _syscall4(int, __syscall_openat, int, fd, const char *, file, int, oflag, mode_t,…
/l4re-core-master/uclibc/lib/contrib/uclibc/librt/
A Dmq_open.c16 int, oflag, __kernel_mode_t, mode, void *, attr);
26 mqd_t mq_open(const char *name, int oflag, ...) in mq_open() argument
39 if (oflag & O_CREAT) { in mq_open()
42 va_start(ap, oflag); in mq_open()
49 return __syscall_mq_open(name + 1, oflag, mode, attr); in mq_open()
A Dspawn_faction_addopen.c28 int fd, const char *path, int oflag, in posix_spawn_file_actions_addopen() argument
49 rec->action.open_action.oflag = oflag; in posix_spawn_file_actions_addopen()
A Dshm.c58 int shm_open(const char *name, int oflag, mode_t mode) in shm_open() argument
70 fd = open(shm_name, oflag | O_CLOEXEC, mode); in shm_open()
72 fd = open(shm_name, oflag, mode); in shm_open()
A Dspawn_int.h20 int oflag; member
A Dspawn.c68 action->action.open_action.oflag in execute_file_actions()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/
A D_trans2r.c25 int attribute_hidden __stdio_trans2r_o(FILE * __restrict stream, int oflag) in __stdio_trans2r_o() argument
34 if (!(stream->__modeflags & oflag)) { in __stdio_trans2r_o()
39 stream->__modeflags |= oflag; in __stdio_trans2r_o()
A D_trans2w.c25 int attribute_hidden __stdio_trans2w_o(FILE * __restrict stream, int oflag) in __stdio_trans2w_o() argument
34 if (!(stream->__modeflags & oflag)) { in __stdio_trans2w_o()
39 stream->__modeflags |= oflag; in __stdio_trans2w_o()
A D_stdio.h312 extern int __stdio_trans2r_o(FILE *__restrict stream, int oflag) attribute_hidden;
313 extern int __stdio_trans2w_o(FILE *__restrict stream, int oflag) attribute_hidden;
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/
A Dsem_open.c244 sem_open (const char *name, int oflag, ...) in sem_open() argument
278 if ((oflag & O_CREAT) == 0 || (oflag & O_EXCL) == 0) in sem_open()
282 (oflag & ~(O_CREAT|O_ACCMODE)) | O_NOFOLLOW | O_RDWR); in sem_open()
287 if ((oflag & O_CREAT) != 0 && errno == ENOENT) in sem_open()
307 va_start (ap, oflag); in sem_open()
361 if ((oflag & O_EXCL) == 0 && errno == EEXIST) in sem_open()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/filesystem/
A Dops-common.h425 int oflag = O_WRONLY|O_CREAT; in _GLIBCXX_VISIBILITY() local
427 oflag |= O_TRUNC; in _GLIBCXX_VISIBILITY()
429 oflag |= O_EXCL; in _GLIBCXX_VISIBILITY()
431 oflag |= O_BINARY; in _GLIBCXX_VISIBILITY()
433 CloseFD out = { posix::open(to, oflag, S_IWUSR) }; in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/filesystem/
A Dops-common.h425 int oflag = O_WRONLY|O_CREAT; in _GLIBCXX_VISIBILITY() local
427 oflag |= O_TRUNC; in _GLIBCXX_VISIBILITY()
429 oflag |= O_EXCL; in _GLIBCXX_VISIBILITY()
431 oflag |= O_BINARY; in _GLIBCXX_VISIBILITY()
433 CloseFD out = { posix::open(to, oflag, S_IWUSR) }; in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/filesystem/
A Dops-common.h416 int oflag = O_WRONLY|O_CREAT; in _GLIBCXX_VISIBILITY() local
418 oflag |= O_TRUNC; in _GLIBCXX_VISIBILITY()
420 oflag |= O_EXCL; in _GLIBCXX_VISIBILITY()
422 oflag |= O_BINARY; in _GLIBCXX_VISIBILITY()
424 CloseFD out = { posix::open(to, oflag, S_IWUSR) }; in _GLIBCXX_VISIBILITY()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/
A Dsemaphore.c193 sem_t *sem_open(const char *name, int oflag, ...) in sem_open() argument
/l4re-core-master/uclibc/lib/libpthread/src/
A Dsemaphore.c196 sem_t *sem_open(const char *name, int oflag, ...) in sem_open() argument
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dsemaphore.c193 sem_t *sem_open(const char *name attribute_unused, int oflag attribute_unused, ...) in sem_open()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/fts/
A Dfts.c594 oflag = DTF_NODUP|DTF_REWIND; in fts_build()
596 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND; in fts_build()
600 if ((dirp = opendir2(cur->fts_accpath, oflag)) == NULL) { in fts_build()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/filesystem/
A Dops.cc419 int oflag = O_WRONLY|O_CREAT; in do_copy_file() local
421 oflag |= O_TRUNC; in do_copy_file()
423 oflag |= O_EXCL; in do_copy_file()
424 CloseFD out = { ::open(to.c_str(), oflag, S_IWUSR) }; in do_copy_file()

Completed in 26 milliseconds

12