/third_party/ltp/testcases/kernel/syscalls/name_to_handle_at/ |
H A D | name_to_handle_at01.c | 39 {&dir_fd, TEST_FILE, AT_SYMLINK_FOLLOW, O_RDWR}, 40 {&dir_fd, TEST_FILE, AT_SYMLINK_FOLLOW, O_RDONLY}, 41 {&dir_fd, TEST_FILE, AT_SYMLINK_FOLLOW, O_WRONLY}, 42 {&dir_fd, TEST_FILE, AT_EMPTY_PATH | AT_SYMLINK_FOLLOW, O_RDWR}, 43 {&dir_fd, TEST_FILE, AT_EMPTY_PATH | AT_SYMLINK_FOLLOW, O_RDONLY}, 44 {&dir_fd, TEST_FILE, AT_EMPTY_PATH | AT_SYMLINK_FOLLOW, O_WRONLY}, 54 {&fd_atcwd, TEST_FILE, AT_SYMLINK_FOLLOW, O_RDWR}, 55 {&fd_atcwd, TEST_FILE, AT_SYMLINK_FOLLOW, O_RDONLY}, 56 {&fd_atcwd, TEST_FILE, AT_SYMLINK_FOLLOW, O_WRONLY}, 57 {&fd_atcwd, TEST_FILE, AT_EMPTY_PATH | AT_SYMLINK_FOLLOW, O_RDW [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | linkat.c | 38 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0100() 61 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0200() 64 EXPECT_NE("linkat_0200", linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW), 0); in linkat_0200()
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_link.c | 53 if (*oldpath == '\0' || *newpath == '\0' || flag & ~AT_SYMLINK_FOLLOW)
in do_link() 65 if (!(flag & AT_SYMLINK_FOLLOW))
in do_link() 78 if (flag & AT_SYMLINK_FOLLOW)
in do_link()
|
/third_party/ltp/include/lapi/ |
H A D | fcntl.h | 97 #ifndef AT_SYMLINK_FOLLOW 98 # define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/ltp/testcases/kernel/syscalls/open_by_handle_at/ |
H A D | open_by_handle_at01.c | 71 AT_EMPTY_PATH | AT_SYMLINK_FOLLOW)); in setup() 78 AT_EMPTY_PATH | AT_SYMLINK_FOLLOW)); in setup()
|
/third_party/ltp/testcases/kernel/syscalls/openat/ |
H A D | openat03.c | 113 AT_SYMLINK_FOLLOW); in test01() 181 AT_SYMLINK_FOLLOW); in link_tmp_file()
|
H A D | openat04.c | 144 SAFE_LINKAT(AT_FDCWD, path, dir_fd, OPEN_FILE, AT_SYMLINK_FOLLOW); in run()
|
/third_party/ltp/testcases/kernel/syscalls/open/ |
H A D | open14.c | 102 AT_SYMLINK_FOLLOW); in test01() 170 AT_SYMLINK_FOLLOW); in link_tmp_file()
|
/third_party/ltp/testcases/kernel/syscalls/linkat/ |
H A D | linkat01.c | 65 #ifndef AT_SYMLINK_FOLLOW 66 #define AT_SYMLINK_FOLLOW 0x400 macro
|
H A D | linkat02.c | 73 {TEST_ELOOP, TEST_FILE, AT_SYMLINK_FOLLOW, ELOOP, NULL, NULL},
|
/third_party/libbpf/include/uapi/linux/ |
H A D | fcntl.h | 104 #define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */ macro
|
/third_party/musl/porting/linux/user/include/ |
H A D | fcntl.h | 64 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | fcntl.h | 63 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | fcntl.h | 63 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | fcntl.h | 63 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | fcntl.h | 64 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | fcntl.h | 63 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/musl/libc-test/src/api/ |
H A D | fcntl.c | 64 C(AT_SYMLINK_FOLLOW) in f()
|
/third_party/musl/include/ |
H A D | fcntl.h | 66 #define AT_SYMLINK_FOLLOW 0x400 macro
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
H A D | types.rs | 33 /// `AT_SYMLINK_FOLLOW` 34 const SYMLINK_FOLLOW = linux_raw_sys::general::AT_SYMLINK_FOLLOW;
|
/third_party/rust/crates/nix/src/ |
H A D | fcntl.rs | 32 AT_SYMLINK_FOLLOW;
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | types.rs | 34 /// `AT_SYMLINK_FOLLOW` 35 const SYMLINK_FOLLOW = c::AT_SYMLINK_FOLLOW;
|
/third_party/libfuse/example/ |
H A D | passthrough_hp.cc | 485 auto res = linkat(AT_FDCWD, procname, inode_p.fd, name, AT_SYMLINK_FOLLOW); in sfs_link()
|
H A D | passthrough_ll.c | 451 AT_SYMLINK_FOLLOW); in lo_link()
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 237 pub const AT_SYMLINK_FOLLOW: c_int = 0x2; consts
|