/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | symlinkat.c | 32 char *file_name = "/data/symlinkat.txt"; in symlinkat_0100() 55 if (symlinkat(file_name, fdd, symlink_name) < 0) { in symlinkat_0100() 56 t_error("%s symlinkat failed", __func__); in symlinkat_0100() 84 char *file_name = "/data/symlinkat.txt"; in symlinkat_0200() 102 if (symlinkat(file_name, fd, symlink_name) < 0) { in symlinkat_0200() 103 t_error("%s symlinkat failed", __func__); in symlinkat_0200()
|
H A D | readlinkat.c | 125 result = symlinkat(filename, fd, linkfilename); in readlinkat_0200()
|
/third_party/rust/crates/rustix/tests/fs/ |
H A D | openat2.rs | 2 use rustix::fs::{cwd, mkdirat, openat, openat2, symlinkat, Mode, OFlags, ResolveFlags}; 52 symlinkat("test.txt", &dir, "symlink.txt").unwrap(); in test_openat2()
|
/third_party/musl/src/unistd/ |
H A D | symlinkat.c | 4 int symlinkat(const char *existing, int fd, const char *new) in symlinkat() function
|
/third_party/libfuse/example/ |
H A D | passthrough_helpers.h | 42 res = symlinkat(link, dirfd, path); in mknod_wrapper()
|
H A D | passthrough_hp.cc | 434 res = symlinkat(link, inode_p.fd, name); in mknod_symlink()
|
/third_party/ltp/testcases/kernel/syscalls/ |
H A D | Makefile | 31 setdomainname sethostname symlinkat ulimit ustat vfork vhangup vmsplice
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_symlink.c | 176 int symlinkat(const char *target, int newdirfd, const char *path)
in symlinkat() function
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
H A D | cp.c | 212 if (!symlinkat(s, cfd, catch)) { in cp_node() 228 !symlinkat(toybuf, cfd, catch))) in cp_node()
|
/third_party/toybox/toys/posix/ |
H A D | cp.c | 239 if (!symlinkat(s, cfd, catch)) { in cp_node() 255 !symlinkat(toybuf, cfd, catch))) in cp_node()
|
/third_party/rust/crates/nix/test/ |
H A D | test_unistd.rs | 876 symlinkat(&target, None, &linkpath).unwrap(); in test_symlinkat() 885 symlinkat(target, Some(dirfd), linkpath).unwrap(); in test_symlinkat() 1023 symlinkat(&oldfilepath, None, &symoldfilepath).unwrap(); in test_linkat_no_follow_symlink() 1066 symlinkat(&oldfilepath, None, &symoldfilepath).unwrap(); 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 | 59 int symlinkat(const char *, int, const char *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 57 int symlinkat(const char *, int, const char *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 63 int symlinkat(const char *, int, const char *);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 59 int symlinkat(const char *, int, const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 57 int symlinkat(const char *, int, const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 63 int symlinkat(const char *, int, const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 57 int symlinkat(const char *, int, const char *);
|
/third_party/musl/include/ |
H A D | unistd.h | 73 int symlinkat(const char *, int, const char *);
|
/third_party/musl/libc-test/src/api/ |
H A D | unistd.c | 320 {int(*p)(const char*,int,const char*) = symlinkat;} in f()
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 638 pub fn symlinkat( in symlinkat() functions
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | syscalls.rs | 387 pub(crate) fn symlinkat( 393 ret(c::symlinkat(
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 606 /// See also [symlinkat(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/symlinkat.html). 608 pub fn symlinkat<P1: ?Sized + NixPath, P2: ?Sized + NixPath>( in symlinkat() functions 616 libc::symlinkat( in symlinkat()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 849 pub fn symlinkat( in symlinkat() functions
|