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

123456

/freebsd-9.3-release/lib/libc/stdio/
H A Dflags.c96 o |= O_EXCL;
108 if ((o & O_EXCL) != 0 && m == O_RDONLY) {
/freebsd-9.3-release/tools/regression/pjdfstest/tests/open/
H A D22.t4 desc="open returns EEXIST when O_CREAT and O_EXCL were specified and the file exists"
15 expect EEXIST open ${n0} O_CREAT,O_EXCL 0644
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_open.c58 f = open(fname, O_CREAT | O_EXCL | O_RDWR, 0600);
/freebsd-9.3-release/cddl/lib/libdtrace/
H A Dio.d97 inline int O_EXCL = 0x0800;
98 #pragma D binding "1.1" O_EXCL
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dmkstemp.c66 fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600);
/freebsd-9.3-release/contrib/ntp/lib/isc/win32/include/isc/
H A Dstat.h66 #define O_EXCL _O_EXCL macro
/freebsd-9.3-release/tools/test/posixshm/
H A Dshm_test.c76 desc = shm_open(buf, O_EXCL | O_CREAT | O_RDWR, 0600);
84 desc = shm_open(buf, O_EXCL | O_CREAT | O_RDWR, 0600);
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dmkstemps.c126 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dmkstemps.c126 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dtmpname.cpp106 : open(tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
/freebsd-9.3-release/contrib/nvi/clib/
H A Dmkstemp.c109 open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0)
/freebsd-9.3-release/contrib/sendmail/test/
H A Dt_exclopen.c13 ** security-defeating semantics that an open with O_CREAT|O_EXCL
87 if (open(Attacker, O_WRONLY|O_CREAT|O_EXCL, 0644) < 0)
/freebsd-9.3-release/lib/libc/db/db/
H A Ddb.c53 (O_CREAT | O_EXCL | O_EXLOCK | O_NOFOLLOW | O_NONBLOCK | \
/freebsd-9.3-release/libexec/ypxfr/
H A Dyp_dbwrite.c68 #define FLAGS O_RDWR|O_EXLOCK|O_EXCL|O_CREAT
/freebsd-9.3-release/sys/dev/drm/
H A Ddrm_fops.c49 if (flags & O_EXCL)
/freebsd-9.3-release/tools/regression/mqueue/mqtest1/
H A Dmqtest1.c21 mq = mq_open(MQNAME, O_CREAT | O_RDWR | O_EXCL, 0666, &attr);
/freebsd-9.3-release/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h103 #define O_EXCL _O_EXCL macro
/freebsd-9.3-release/usr.sbin/extattrctl/
H A Dextattrctl.c97 flags = O_CREAT | O_WRONLY | O_TRUNC | O_EXCL;
102 flags &= ~O_EXCL;
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dmktemp.c82 fd = open(path, O_CREAT|O_EXCL|O_RDWR, S_IRUSR|S_IWUSR);
/freebsd-9.3-release/lib/libkse/test/
H A Dsem_d.c91 assert(SEM_FAILED == sem_open("/foo", O_CREAT | O_EXCL, 0644, 0));
/freebsd-9.3-release/tools/regression/mqueue/mqtest2/
H A Dmqtest2.c33 mq = mq_open(MQNAME, O_CREAT | O_RDWR | O_EXCL, 0666, &attr);
/freebsd-9.3-release/usr.bin/tip/tip/
H A Duucplock.c70 fd = open(tbuf, O_RDWR|O_CREAT|O_EXCL, 0660);
/freebsd-9.3-release/usr.sbin/fifolog/lib/
H A Dfifolog_create.c53 fd = open(fn, O_WRONLY | O_TRUNC | O_EXCL | O_CREAT, 0644);
/freebsd-9.3-release/lib/libc/gen/
H A Dsem_new.c161 if (flags & ~(O_CREAT|O_EXCL)) {
181 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT |
182 O_EXCL) || ni->dev != sb.st_dev ||
/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_fcntl.c71 if (flags & IBCS2_O_EXCL) r |= O_EXCL;
150 if (flags & IBCS2_O_EXCL) r |= O_EXCL;
171 if (flags & O_EXCL) r |= IBCS2_O_EXCL;

Completed in 245 milliseconds

123456