/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/pthread/ |
A D | not-cancel.h | 45 # 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 D | not-cancel.h | 45 # 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 D | not-cancel.h | 45 # 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 D | not-cancel.h | 46 # 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 D | open.c | 28 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 D | open64.c | 15 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 D | openat64.c | 14 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 D | openat.c | 14 static __inline__ _syscall4(int, __syscall_openat, int, fd, const char *, file, int, oflag, mode_t,…
|
/l4re-core-master/uclibc/lib/contrib/uclibc/librt/ |
A D | mq_open.c | 16 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 D | spawn_faction_addopen.c | 28 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 D | shm.c | 58 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 D | spawn_int.h | 20 int oflag; member
|
A D | spawn.c | 68 action->action.open_action.oflag in execute_file_actions()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/ |
A D | _trans2r.c | 25 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.c | 25 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.h | 312 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 D | sem_open.c | 244 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 D | ops-common.h | 425 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 D | ops-common.h | 425 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 D | ops-common.h | 416 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 D | semaphore.c | 193 sem_t *sem_open(const char *name, int oflag, ...) in sem_open() argument
|
/l4re-core-master/uclibc/lib/libpthread/src/ |
A D | semaphore.c | 196 sem_t *sem_open(const char *name, int oflag, ...) in sem_open() argument
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/ |
A D | semaphore.c | 193 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 D | fts.c | 594 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 D | ops.cc | 419 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()
|