/dragonfly/contrib/grep/lib/ |
H A D | openat.h | 70 return fchownat (fd, file, owner, group, AT_SYMLINK_NOFOLLOW); in lchownat() 90 return fchmodat (fd, file, mode, AT_SYMLINK_NOFOLLOW); in lchmodat() 110 return fstatat (fd, name, st, AT_SYMLINK_NOFOLLOW); in lstatat()
|
H A D | fts.c | 1822 AT_SYMLINK_NOFOLLOW)) { in fts_stat()
|
/dragonfly/lib/libssh/openbsd-compat/ |
H A D | bsd-misc.h | 95 # ifndef AT_SYMLINK_NOFOLLOW 96 # define AT_SYMLINK_NOFOLLOW 0x80000000 macro
|
H A D | bsd-misc.c | 149 if (flag & AT_SYMLINK_NOFOLLOW) in utimensat() 180 if (flag & AT_SYMLINK_NOFOLLOW) in fchownat() 211 if (flag & AT_SYMLINK_NOFOLLOW) in fchmodat()
|
/dragonfly/gnu/usr.bin/grep/libgreputils/ |
H A D | fcntl.h | 846 #ifndef AT_SYMLINK_NOFOLLOW 847 # define AT_SYMLINK_NOFOLLOW 4096 macro
|
/dragonfly/usr.bin/chflags/ |
H A D | chflags.c | 145 atflag = AT_SYMLINK_NOFOLLOW; in main()
|
/dragonfly/bin/chmod/ |
H A D | chmod.c | 155 atflag = AT_SYMLINK_NOFOLLOW; in main()
|
/dragonfly/sys/sys/ |
H A D | fcntl.h | 179 #define AT_SYMLINK_NOFOLLOW 1 macro
|
/dragonfly/usr.sbin/chown/ |
H A D | chown.c | 161 atflag = AT_SYMLINK_NOFOLLOW; in main()
|
/dragonfly/test/stress/stress2/testcases/openat/ |
H A D | doat.c | 260 tests[1].tests[4].params[3].i = AT_SYMLINK_NOFOLLOW; in setup() 300 tests[2].tests[4].params[4].i = AT_SYMLINK_NOFOLLOW; in setup() 336 tests[3].tests[3].params[3].i = AT_SYMLINK_NOFOLLOW; in setup()
|
/dragonfly/sys/kern/ |
H A D | vfs_syscalls.c | 3110 if (uap->flags & ~AT_SYMLINK_NOFOLLOW) in sys_fstatat() 3113 flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW; in sys_fstatat() 3375 if (uap->atflags & ~AT_SYMLINK_NOFOLLOW) in sys_chflagsat() 3378 lookupflags = (uap->atflags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW; in sys_chflagsat() 3505 if (uap->flags & ~AT_SYMLINK_NOFOLLOW) in sys_fchmodat() 3507 flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW; in sys_fchmodat() 3646 if (uap->flags & ~AT_SYMLINK_NOFOLLOW) in sys_fchownat() 3648 flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW; in sys_fchownat() 3944 if (flags & ~AT_SYMLINK_NOFOLLOW) in kern_utimensat() 3989 flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW; in sys_utimensat()
|
/dragonfly/crypto/openssh/ |
H A D | sftp-server.c | 1487 a.perm & 07777, AT_SYMLINK_NOFOLLOW); in process_extended_lsetstat() 1499 attrib_to_ts(&a), AT_SYMLINK_NOFOLLOW); in process_extended_lsetstat() 1507 AT_SYMLINK_NOFOLLOW); in process_extended_lsetstat()
|
/dragonfly/usr.bin/unzip/ |
H A D | unzip.c | 639 if (utimensat(AT_FDCWD, *path, ts, AT_SYMLINK_NOFOLLOW) != 0) in extract_file()
|
/dragonfly/sys/vfs/dirfs/ |
H A D | dirfs_subr.c | 345 error = fstatat(fd, path, &st, AT_SYMLINK_NOFOLLOW); in dirfs_node_stat()
|
/dragonfly/usr.sbin/newsyslog/ |
H A D | newsyslog.c | 1495 fstatat(fd, dp->d_name, &sb, AT_SYMLINK_NOFOLLOW) != 0 || in validate_old_timelog() 2419 if (fstatat(dir_fd, dp->d_name, &sb, AT_SYMLINK_NOFOLLOW) == -1) { in mtime_old_timelog()
|
/dragonfly/contrib/libarchive/libarchive/ |
H A D | archive_write_disk_posix.c | 2859 r = fstatat(chdir_fd, head, &st, AT_SYMLINK_NOFOLLOW); in check_symlinks_fsobj() 3515 return utimensat(AT_FDCWD, name, ts, AT_SYMLINK_NOFOLLOW); in set_time()
|
H A D | archive_read_disk_posix.c | 2551 AT_SYMLINK_NOFOLLOW) != 0)
|
/dragonfly/contrib/grep/src/ |
H A D | grep.c | 1645 int flag = follow ? 0 : AT_SYMLINK_NOFOLLOW; in grepdirent()
|