| /src/external/cddl/osnet/sys/sys/ |
| open.h | 40 #define FEXCL O_EXCL
|
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| target-newlib-open.c | 50 #ifdef O_EXCL 51 { "O_EXCL", O_EXCL, 0x0800 },
|
| /src/external/gpl3/gdb/dist/sim/common/ |
| target-newlib-open.c | 50 #ifdef O_EXCL 51 { "O_EXCL", O_EXCL, 0x0800 },
|
| /src/external/cddl/osnet/dist/lib/libuutil/common/ |
| uu_open.c | 59 f = open(fname, O_CREAT | O_EXCL | O_RDWR, 0600);
|
| /src/tests/kernel/ |
| t_ksem.c | 92 ATF_REQUIRE_EQ(_ksem_open("/ksem_x", O_CREAT | O_EXCL, 0644, 0, &ksem), 115 ATF_REQUIRE_EQ(_ksem_open("/ksem_b", O_CREAT | O_EXCL, 0644, 0, &ksem), 121 ATF_REQUIRE_EQ(_ksem_open("/ksem_b", O_CREAT | O_EXCL, 0644, 1, &ksem1),
|
| /src/lib/libc/stdio/ |
| flags.c | 114 o |= O_EXCL;
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| mkstemp.c | 66 fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600);
|
| /src/external/bsd/mdocml/dist/ |
| compat_mkstemps.c | 53 fd = open(path, O_CREAT | O_EXCL | O_RDWR, S_IRUSR | S_IWUSR);
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/ |
| stat.h | 68 #define O_EXCL _O_EXCL
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| safe_open.c | 28 /* These arguments are the same as with open(2). The O_EXCL flag 105 if ((fp = vstream_fopen(path, flags & ~(O_CREAT | O_EXCL), 0)) == 0) { 203 * Create a non-existing file. This relies on O_CREAT | O_EXCL to not 206 if ((fp = vstream_fopen(path, flags | (O_CREAT | O_EXCL), mode)) == 0) { 250 switch (flags & (O_CREAT | O_EXCL)) { 261 case O_CREAT | O_EXCL: 283 msg_panic("safe_open: O_EXCL flag without O_CREAT flag");
|
| /src/tests/lib/librt/ |
| t_sem.c | 90 sem_b = sem_open("/sem_b", O_CREAT | O_EXCL, 0644, 0); 135 sem_a = sem_open("/sem_a", O_CREAT | O_EXCL, 0644, 0); 225 master_region = get_shared_region(O_RDWR | O_CREAT | O_EXCL); 302 sem = sem_open("/sem_c", O_CREAT | O_EXCL, 0644, 0); 326 sem = sem_open("/sem_d", O_CREAT | O_EXCL, 0777, 0); 328 sem2 = sem_open("/sem_d", O_CREAT | O_EXCL, 0777, 0);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/ |
| fcntl.d | 76 O_EXCL 158 enum O_EXCL = 0x80; // octal 0200 185 enum O_EXCL = 0x00400; // octal 0200 209 enum O_EXCL = 0x0400; 236 enum O_EXCL = 0x80; // octal 0200 263 enum O_EXCL = 0x80; // octal 0200 290 enum O_EXCL = 0x80; // octal 0200 317 enum O_EXCL = 0x800; 344 enum O_EXCL = 0x80; // octal 0200 420 enum O_EXCL = 0x0800 [all...] |
| /src/sys/external/bsd/drm/dist/bsd-core/ |
| drm_fops.c | 65 if (flags & O_EXCL) 118 if (flags & O_EXCL)
|
| /src/lib/libc/db/db/ |
| db.c | 65 (O_CREAT | O_EXCL | O_EXLOCK | O_NONBLOCK | O_RDONLY | \
|
| /src/external/bsd/libbind/dist/bsd/ |
| mktemp.c | 130 open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0)
|
| /src/external/bsd/ntp/dist/sntp/libopts/compat/ |
| windows-config.h | 105 #define O_EXCL _O_EXCL
|
| /src/external/bsd/nvi/dist/clib/ |
| mkstemp.c | 108 open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0)
|
| /src/external/gpl2/groff/dist/src/libs/libgroff/ |
| tmpname.cpp | 108 : open(tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| mkstemps.c | 128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| mkstemps.c | 128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| mkstemps.c | 128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| mkstemps.c | 128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| mkstemps.c | 128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| dot_lockfile.c | 95 * Attempt to create the lock. This code relies on O_EXCL | O_CREAT 99 if ((fd = open(lock_file, O_WRONLY | O_EXCL | O_CREAT, 0)) >= 0) {
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| mkstemps.c | 128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
|