Home
last modified time | relevance | path

Searched refs:AT_SYMLINK_NOFOLLOW (Results 1 – 6 of 6) sorted by relevance

/DragonOS/kernel/src/common/
H A Dfcntl.h47 #define AT_SYMLINK_NOFOLLOW 0x100 /* Do not follow symbolic links. */ macro
/DragonOS/kernel/src/filesystem/vfs/
H A Dfcntl.rs74 const AT_SYMLINK_NOFOLLOW = 0x100; constant
H A Dopen.rs34 & (!((AtFlags::AT_EACCESS | AtFlags::AT_SYMLINK_NOFOLLOW | AtFlags::AT_EMPTY_PATH).bits() in do_faccessat()
78 if flag.contains(!(AtFlags::AT_SYMLINK_NOFOLLOW | AtFlags::AT_EMPTY_PATH)) { in do_fchownat()
82 let follow_symlink = flag.contains(!AtFlags::AT_SYMLINK_NOFOLLOW); in do_fchownat()
259 let inode = if flags.contains(UtimensFlags::AT_SYMLINK_NOFOLLOW) {
H A Dsyscall.rs333 const AT_SYMLINK_NOFOLLOW = 0x100; constant
1667 AtFlags::AT_SYMLINK_NOFOLLOW, in lchown()
/DragonOS/user/apps/test-chown/src/
H A Dmain.rs4 AT_SYMLINK_NOFOLLOW,
112 test_fchownat(symlink_name, new_uid, new_gid, AT_SYMLINK_NOFOLLOW)?; in main()
/DragonOS/user/apps/test_statx/src/
H A Dmain.rs52 libc::AT_SYMLINK_NOFOLLOW, in main()