Searched refs:O_EXCL (Results 1 - 22 of 22) sorted by relevance

/seL4-camkes-master/projects/musllibc/arch/aarch64/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/aarch64_sel4/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/arm/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/arm_sel4/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/generic/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/mips/bits/
H A Dfcntl.h2 #define O_EXCL 02000 macro
/seL4-camkes-master/projects/musllibc/arch/mips64/bits/
H A Dfcntl.h2 #define O_EXCL 02000 macro
/seL4-camkes-master/projects/musllibc/arch/mipsn32/bits/
H A Dfcntl.h2 #define O_EXCL 02000 macro
/seL4-camkes-master/projects/musllibc/arch/powerpc/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/powerpc64/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/s390x/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/x32/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/x86_64/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/arch/x86_64_sel4/bits/
H A Dfcntl.h2 #define O_EXCL 0200 macro
/seL4-camkes-master/projects/musllibc/src/stdio/
H A D__fmodeflags.c10 if (strchr(mode, 'x')) flags |= O_EXCL;
H A Dtmpfile.c17 fd = sys_open(s, O_RDWR|O_CREAT|O_EXCL, 0600);
H A Dfreopen.c26 fl &= ~(O_CREAT|O_EXCL|O_CLOEXEC);
/seL4-camkes-master/projects/musllibc/src/thread/
H A Dsem_open.c68 flags &= (O_CREAT|O_EXCL);
74 if (flags == (O_CREAT|O_EXCL) && access(name, F_OK) == 0) {
82 if (flags != (O_CREAT|O_EXCL)) {
114 fd = open(tmp, O_CREAT|O_EXCL|FLAGS, mode);
133 if (e != EEXIST || flags == (O_CREAT|O_EXCL))
/seL4-camkes-master/projects/musllibc/src/temp/
H A Dmkostemps.c22 if ((fd = open(template, flags | O_RDWR | O_CREAT | O_EXCL, 0600))>=0)
/seL4-camkes-master/projects/picotcp/test/
H A Dtest_tftp_app_client.c55 fd = open(filename, O_WRONLY | O_EXCL | O_CREAT, 0664);
/seL4-camkes-master/projects/picotcp/test/examples/
H A Dtftp.c110 fd = open(filename, (toupper(operation) == 'T') ? O_RDONLY : O_WRONLY | O_EXCL | O_CREAT, 0666);
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dutils.c834 while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {

Completed in 128 milliseconds