Searched refs:O_EXCL (Results 26 - 50 of 196) sorted by relevance

12345678

/macosx-10.9.5/BerkeleyDB-21/db/os/
H A Dos_handle.c67 * creat() instead. (It does not support O_EXCL or O_TRUNC
72 * file. If successful, and O_EXCL return EEXIST. If
77 newflags = flags & ~(O_CREAT | O_EXCL);
86 if (LF_ISSET(O_EXCL)) {
88 * If we get here, want O_EXCL create,
H A Dos_open.c61 * same time with DB_OSO_CREATE/O_CREAT and DB_OSO_EXCL/O_EXCL flags
68 oflags |= O_EXCL;
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dtempname.c194 __GT_FILE: create the file using open(O_CREAT|O_EXCL)
270 fd = small_open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
274 fd = large_open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
/macosx-10.9.5/postfix-252/postfix/src/local/
H A Dmaildir.c188 if ((dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0
191 || (dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0)) {
/macosx-10.9.5/postfix-252/postfix/src/virtual/
H A Dmaildir.c182 if ((dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0
185 || (dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0)) {
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dmktemp.c82 fd = open(path, O_CREAT|O_EXCL|O_RDWR, S_IRUSR|S_IWUSR);
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dsuid_exec.c380 #ifdef O_EXCL
381 if((n = open(tmpname, O_WRONLY | O_CREAT | O_EXCL, SPECIAL)) < 0 ||
428 #ifdef O_EXCL
429 if((n = open(tmpname,O_WRONLY|O_CREAT|O_TRUNC|O_EXCL, mode)) < 0)
433 #endif /* O_EXCL */
/macosx-10.9.5/sudo-72/src/
H A Dmkstemps.c82 fd = open(path, O_CREAT|O_EXCL|O_RDWR, S_IRUSR|S_IWUSR);
/macosx-10.9.5/xnu-2422.115.4/tools/tests/perf_index/
H A Dstress_file_read.c22 fd = open(filepath, O_CREAT | O_EXCL | O_WRONLY, 0644);
/macosx-10.9.5/Libc-997.90.3/os/
H A Dtrace.c59 O_EXCL | O_CLOEXEC, 0644);
72 fd = open(path, O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW | O_EXCL |
85 O_EXCL | O_CLOEXEC, 0644);
/macosx-10.9.5/basic_cmds-55/uudecode/
H A Duudecode.c266 flags = O_WRONLY | O_CREAT | O_EXCL;
289 flags &= ~O_EXCL;
294 flags &= ~O_EXCL;
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dmktemp.c164 _open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0)
/macosx-10.9.5/xnu-2422.115.4/tools/tests/xnu_quick_test/
H A Dsema_tests.c116 my_sem_t = sem_open( &my_sema_name[0], (O_CREAT | O_EXCL), (S_IRUSR | S_IWUSR), 0 );
H A Dshared_memory_tests.c116 my_fd = shm_open( &my_name[0], (O_RDWR | O_CREAT | O_EXCL), S_IRWXU );
H A Dmisc.c37 my_fd = open( the_pathp, (O_RDWR | O_CREAT | O_EXCL),
138 my_fd = open( my_pathp, (O_RDWR | O_CREAT | O_EXCL),
H A Dcontent_protection_test.c420 fd = open(filepath, O_CREAT | O_EXCL | O_RDWR | O_CLOEXEC, 0777);
473 fd = open (filepath, O_CREAT | O_EXCL | O_RDWR | O_CLOEXEC);
771 fd = open(filepath, O_CREAT | O_EXCL | O_CLOEXEC, 0777);
822 fd = open(filepath, O_CREAT | O_EXCL | O_CLOEXEC, 0777);
850 fd = open(filepath, O_CREAT | O_EXCL | O_RDWR | O_CLOEXEC, 0777);
/macosx-10.9.5/bind9-45.100/bind9/
H A Dconfig.h.win32144 #define O_EXCL _O_EXCL
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dtempname.c221 __GT_FILE: create the file using open(O_CREAT|O_EXCL)
297 fd = __open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
301 fd = __open64 (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
/macosx-10.9.5/gpatch-3/patch/
H A Dcommon.h299 #ifndef O_EXCL
300 #define O_EXCL 0 macro
/macosx-10.9.5/procmail-14/procmail/src/
H A Dexopen.c113 (0>(i=ropen(full,O_WRONLY|O_CREAT|O_EXCL,mode))&&errno==EEXIST))&&
183 0<=(fd=ropen(newn,O_WRONLY|O_CREAT|O_EXCL,stbuf.st_mode)))
/macosx-10.9.5/Heimdal-323.92.1/lib/otp/
H A Dotp_db.c57 lock = open (OTP_DB_LOCK, O_WRONLY | O_CREAT | O_EXCL, 0666);
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dtmpfile.c43 #define BASEOPENFLAGS (O_CREAT | O_TRUNC | O_EXCL)
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dfile.c353 if ((fd = open(filename, O_WRONLY | O_EXCL)) < 0)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/Kerberos5/
H A Dwin-mac.h191 #define O_EXCL _O_EXCL macro
/macosx-10.9.5/securityd-55199.3/src/
H A Dtokencache.cpp213 cache.makedir(root(), O_CREAT | O_EXCL, 0711, securityd); local

Completed in 405 milliseconds

12345678