Searched refs:O_EXCL (Results 51 - 75 of 196) sorted by relevance

12345678

/macosx-10.9.5/system_cmds-597.90.1/dynamic_pager.tproj/
H A Ddynamic_pager.c251 fd = open_dprotected_np(subfile, O_CREAT|O_EXCL|O_RDWR, PROTECTION_CLASS_F, 0, (mode_t)(S_IRUSR|S_IWUSR));
253 fd = open(subfile, O_CREAT|O_EXCL|O_RDWR,(mode_t)(S_IRUSR|S_IWUSR));
425 fd = open_dprotected_np(subfile, O_CREAT|O_EXCL|O_RDWR, PROTECTION_CLASS_F, 0, ((mode_t)(S_IRUSR|S_IWUSR)));
427 fd = open(subfile, O_CREAT|O_EXCL|O_RDWR, ((mode_t)(S_IRUSR|S_IWUSR)));
/macosx-10.9.5/system_cmds-597.90.1/pwd_mkdb.tproj/
H A Dpwd_mkdb.c232 O_RDWR|O_CREAT|O_EXCL, PERM_SECURE, DB_HASH, &openinfo);
252 dp = dbopen(buf, O_RDWR|O_CREAT|O_EXCL, PERM_INSECURE,
271 O_WRONLY|O_CREAT|O_EXCL, PERM_INSECURE)) < 0)
395 if ((to_fd = open(to, O_WRONLY|O_CREAT|O_EXCL, mode)) < 0)
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/dynamic_pager.tproj/
H A Ddynamic_pager.c251 fd = open_dprotected_np(subfile, O_CREAT|O_EXCL|O_RDWR, PROTECTION_CLASS_F, 0, (mode_t)(S_IRUSR|S_IWUSR));
253 fd = open(subfile, O_CREAT|O_EXCL|O_RDWR,(mode_t)(S_IRUSR|S_IWUSR));
425 fd = open_dprotected_np(subfile, O_CREAT|O_EXCL|O_RDWR, PROTECTION_CLASS_F, 0, ((mode_t)(S_IRUSR|S_IWUSR)));
427 fd = open(subfile, O_CREAT|O_EXCL|O_RDWR, ((mode_t)(S_IRUSR|S_IWUSR)));
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/pwd_mkdb.tproj/
H A Dpwd_mkdb.c232 O_RDWR|O_CREAT|O_EXCL, PERM_SECURE, DB_HASH, &openinfo);
252 dp = dbopen(buf, O_RDWR|O_CREAT|O_EXCL, PERM_INSECURE,
271 O_WRONLY|O_CREAT|O_EXCL, PERM_INSECURE)) < 0)
395 if ((to_fd = open(to, O_WRONLY|O_CREAT|O_EXCL, mode)) < 0)
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinChan.c902 switch (mode & (O_CREAT | O_EXCL | O_TRUNC)) {
903 case (O_CREAT | O_EXCL):
904 case (O_CREAT | O_EXCL | O_TRUNC):
914 case (O_TRUNC | O_EXCL):
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinChan.c835 switch (mode & (O_CREAT | O_EXCL | O_TRUNC)) {
836 case (O_CREAT | O_EXCL):
837 case (O_CREAT | O_EXCL | O_TRUNC):
847 case (O_TRUNC | O_EXCL):
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dio.d169 inline int O_EXCL = 0x0800;
170 #pragma D binding "1.1" O_EXCL
/macosx-10.9.5/apache-786.1/httpd/test/
H A Dtime-sem.c101 fcntl_fd = open("test-lock-thing", O_CREAT | O_WRONLY | O_EXCL, 0644);
149 flock_fd = open(FNAME, O_CREAT | O_WRONLY | O_EXCL, 0644);
/macosx-10.9.5/cctools-845/ar/
H A Darchive.c101 mode |= O_EXCL;
111 mode &= ~O_EXCL;
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsystem.h105 #ifndef O_EXCL
106 # define O_EXCL 16 /* file cannot already exist */ macro
/macosx-10.9.5/remote_cmds-41.90.1/rpc_yppasswdd.tproj/
H A Dpasswd.c98 fd = open(_PATH_MASTERPASSWD_LOCK, O_WRONLY|O_CREAT|O_EXCL, 0600);
101 fd = open(_PATH_MASTERPASSWD_LOCK, O_WRONLY|O_CREAT|O_EXCL,
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Dmovemail.c335 desc = open (tempname, O_WRONLY | O_CREAT | O_EXCL, 0666);
398 outdesc = open (outname, O_WRONLY | O_CREAT | O_EXCL, 0666);
760 mbfi = open (outfile, O_WRONLY | O_CREAT | O_EXCL, 0666);
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dunix++.cpp429 // O_EXCL fail if the directory is present
438 if (flags & O_EXCL)
452 if (errno == EEXIST && !(flags & O_EXCL))
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dunix++.cpp429 // O_EXCL fail if the directory is present
438 if (flags & O_EXCL)
452 if (errno == EEXIST && !(flags & O_EXCL))
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/unix/
H A Dfile.c284 while ((fd = open(templet, O_RDWR|O_CREAT|O_EXCL, mode)) == -1) {
490 flags = O_WRONLY | O_CREAT | O_EXCL;
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/
H A Dfile.c84 open(path, O_CREAT|O_EXCL|O_RDWR,
562 flags = O_WRONLY | O_CREAT | O_EXCL;
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dndbm_wrap.c165 if (flags & O_EXCL)
/macosx-10.9.5/WebKit2-7537.78.2/Shared/linux/SeccompFilters/
H A DOpenSyscall.cpp149 if (m_flags & O_CREAT || m_flags & O_EXCL)
/macosx-10.9.5/bind9-45.100/bind9/bin/named/win32/
H A Dos.c195 fd = open(filename, O_WRONLY|O_CREAT|O_EXCL, mode);
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dgetputfile.c228 if ((fd = open(filename, O_WRONLY | O_EXCL | O_TRUNC)) < 0)
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dcert.c84 if ((fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0400)) < 0)
/macosx-10.9.5/cups-372.4/cups/systemv/
H A Dlppasswd.c299 if ((fd = open(passwdnew, O_WRONLY | O_CREAT | O_EXCL, 0400)) < 0)
/macosx-10.9.5/efax-36/efax/
H A Dfaxnotify91 fd = os.open(dstfile, os.O_WRONLY | os.O_CREAT | os.O_EXCL)
/macosx-10.9.5/groff-38/groff/src/utils/xtotroff/
H A Dxtotroff.c162 fd = open(troff_name, O_WRONLY | O_CREAT | O_EXCL, 0600);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/path/
H A Dpathtemp.c49 * if fdp!=0 then the path is opened O_EXCL and *fdp is the open fd
325 if ((n = open(b, O_CREAT|O_RDWR|O_EXCL|O_TEMPORARY, tmp.mode)) >= 0)

Completed in 316 milliseconds

12345678