/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | linkat.c | 25 * @tc.desc : Vertify linkat process success. 38 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0100() 40 EXPECT_EQ("linkat_0100", access("/etc/linkat.txt", F_OK), 0); in linkat_0100() 41 system("rm -f /etc/linkat.txt"); in linkat_0100() 46 * @tc.desc : Vertify linkat process fail. Beceause creating a hard linkat file with the same name. 53 if (access("/etc/linkat.txt", F_OK) != 0) { in linkat_0200() 61 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat in linkat_0200() [all...] |
/third_party/musl/src/unistd/ |
H A D | linkat.c | 4 int linkat(int fd1, const char *existing, int fd2, const char *new, int flag) in linkat() function
|
/third_party/ltp/testcases/kernel/syscalls/ |
H A D | Makefile | 26 linkat kill mallopt memmap mq_notify mq_open mq_timedreceive \
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_link.c | 156 int linkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags)
in linkat() function
|
/third_party/rust/crates/nix/test/ |
H A D | test_unistd.rs | 914 linkat( in test_linkat_file() 951 linkat( in test_linkat_olddirfd_none() 988 linkat( in test_linkat_newdirfd_none() 1031 linkat( in test_linkat_no_follow_symlink() 1074 linkat( in test_linkat_follow_symlink()
|
/third_party/rust/crates/rustix/src/fs/ |
H A D | mod.rs | 95 linkat, mkdirat, openat, readlinkat, renameat, statat, symlinkat, unlinkat, utimensat, RawMode,
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 57 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 55 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 61 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 57 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 55 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 61 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 55 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/include/ |
H A D | unistd.h | 71 int linkat(int, const char *, int, const char *, int);
|
/third_party/musl/libc-test/src/api/ |
H A D | unistd.c | 297 {int(*p)(int,const char*,int,const char*,int) = linkat;} in f()
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
H A D | cp.c | 189 if (!linkat(tfd, try->name, cfd, catch, 0)) err = 0; in cp_node()
|
/third_party/toybox/toys/posix/ |
H A D | cp.c | 216 if (!linkat(tfd, try->name, cfd, catch, 0)) err = 0; in cp_node()
|
/third_party/ltp/lib/ |
H A D | safe_macros.c | 468 rval = linkat(olddirfd, oldpath, newdirfd, newpath, flags); in safe_linkat() 472 "linkat(%d,%s,%d,%s,%d) failed", olddirfd, oldpath, in safe_linkat() 476 "Invalid linkat(%d,%s,%d,%s,%d) return value %d", in safe_linkat()
|
/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 | 450 res = linkat(AT_FDCWD, procname, lo_fd(req, parent), name, in lo_link()
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 618 pub fn linkat( in linkat() functions
|
/third_party/tzdata/ |
H A D | zic.c | 170 # define linkat(targetdir, target, linknamedir, linkname, flag) \ macro 1470 if (linkat(AT_FDCWD, target, AT_FDCWD, outname, AT_SYMLINK_FOLLOW) in dolink() 1480 /* If linkat is not supported, fall back on link(A, B). in dolink()
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 1231 /// Flags for `linkat` function. 1250 /// See also [linkat(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/linkat.html) 1252 pub fn linkat<P: ?Sized + NixPath>( in linkat() functions 1270 libc::linkat( in linkat()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 836 pub fn linkat( in linkat() functions
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 134 # define HAVE_LINKAT_RUNTIME (linkat != NULL) 3994 result = linkat(src_dir_fd, src->narrow, in os_link_impl()
|