Symbol: O_NOFOLLOW
bin/dd/args.c
455
{ "nofollow", O_NOFOLLOW, C_IFLAG|C_OFLAG },
bin/rm/rm.c
406
if ((fd = open(file, O_RDWR|O_SYNC|O_RSYNC|O_NOFOLLOW, 0)) == -1)
bin/sh/redir.c
949
#ifndef O_NOFOLLOW
bin/sh/redir.c
977
O_NOFOLLOW|O_CREAT|O_TRUNC|O_EXCL|O_NOCTTY|O_DIRECTORY|O_REGULAR)
crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c
256
fd = open(fname, O_WRONLY | O_CREAT | O_EXCL | O_NOFOLLOW, S_IRUSR | S_IWUSR);
crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c
274
fdin = open(finput, O_RDONLY | O_NOFOLLOW);
dist/pf/sbin/pflogd/privsep.c
165
O_RDWR|O_CREAT|O_APPEND|O_NONBLOCK|O_NOFOLLOW,
games/atc/log.c
123
#if defined(O_NOFOLLOW)
games/atc/log.c
124
score_fd = open(_PATH_SCORE, O_CREAT|O_RDWR|O_NOFOLLOW, 0664);
lib/libc/stdio/flags.c
111
o |= O_NOFOLLOW;
lib/librt/shm.c
129
return open(path, oflag | O_CLOEXEC | O_NOFOLLOW, mode);
libexec/identd/identd.c
900
if ((fd = open(path, O_RDONLY|O_NONBLOCK|O_NOFOLLOW, 0)) < 0) {
libexec/mail.local/mail.local.c
241
if ((mbfd = open(path, O_APPEND|O_WRONLY|O_EXLOCK|O_NOFOLLOW,
sys/compat/linux/common/linux_file.c
117
res |= cvtto_bsd_mask(lflags, LINUX_O_NOFOLLOW, O_NOFOLLOW);
sys/compat/linux/common/linux_file.c
143
res |= cvtto_linux_mask(bflags, O_NOFOLLOW, LINUX_O_NOFOLLOW);
sys/compat/linux/common/linux_inotify.c
501
SCARG(&oa, flags) |= O_NOFOLLOW;
sys/kern/kern_core.c
239
error = vn_open(NULL, pb, 0, O_CREAT | O_NOFOLLOW | FWRITE,
sys/kern/vfs_vnops.c
201
((fmode & O_NOFOLLOW) == 0))
sys/kern/vfs_vnops.c
208
if ((fmode & O_NOFOLLOW) == 0)
sys/rump/kern/lib/libsys_sunos/rump_sunos_compat.c
204
flags |= (sflags & 0x20000) ? O_NOFOLLOW : 0;
sys/sys/fcntl.h
142
O_RSYNC|O_NOCTTY|O_ALT_IO|O_NOFOLLOW|O_DIRECT|\
tests/kernel/t_fcntl.c
67
fd = open(files[i].name, O_RDONLY|O_NOFOLLOW);
tests/lib/libc/sys/t_dup.c
223
ATF_REQUIRE_ERRNO(EINVAL, dup3(fd, 1, O_NOFOLLOW) == -1);
usr.bin/chpass/edit.c
155
if ((fd = open(tempname, O_RDONLY|O_NOFOLLOW)) == -1 ||