/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
H A D | fchmodat.c | 37 int result = fchmodat(fd, in fchmodat_0100() 61 int result = fchmodat(fd, in fchmodat_0200() 79 int result = fchmodat(-1, "test.txt", S_IRWXU | S_IRWXG | S_IRWXO, AT_SYMLINK_NOFOLLOW); in fchmodat_0300()
|
/third_party/musl/src/stat/ |
H A D | lchmod.c | 7 return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW); in lchmod()
|
H A D | fchmodat.c | 6 int fchmodat(int fd, const char *path, mode_t mode, int flag) in fchmodat() function
|
/third_party/rust/crates/nix/test/ |
H A D | test_stat.rs | 41 use nix::sys::stat::{fchmodat, mkdirat}; 187 fchmodat(Some(dirfd), filename, mode1, FchmodatFlags::FollowSymlink) in test_fchmodat() 197 fchmodat(None, filename, mode2, FchmodatFlags::FollowSymlink).unwrap(); in test_fchmodat()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | stat.h | 79 int fchmodat(int, const char *, mode_t, int);
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | stat.h | 79 int fchmodat(int, const char *, mode_t, int);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | stat.h | 79 int fchmodat(int, const char *, mode_t, int);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | stat.h | 79 int fchmodat(int, const char *, mode_t, int);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | stat.h | 79 int fchmodat(int, const char *, mode_t, int);
|
/third_party/musl/libc-test/src/api/ |
H A D | sys_stat.c | 88 {int(*p)(int,const char*,mode_t,int) = fchmodat;} in f()
|
/third_party/musl/include/sys/ |
H A D | stat.h | 86 int fchmodat(int, const char *, mode_t, int);
|
/third_party/rust/crates/nix/src/sys/ |
H A D | stat.rs | 303 /// Flags for `fchmodat` function. 319 /// `fchmodat(None, path, mode, FchmodatFlags::FollowSymlink)` is identical to 325 /// [fchmodat(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/fchmodat.html). 328 pub fn fchmodat<P: ?Sized + NixPath>( in fchmodat() functions 339 libc::fchmodat( in fchmodat()
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | syscalls.rs | 695 unsafe { ret(c::fchmodat(borrowed_fd(dirfd), c_str(path), mode.bits(), 0)) } 700 // Linux's `fchmodat` does not have a flags argument.
|
/third_party/toybox/lib/ |
H A D | lib.c | 766 int rc = fchmodat(fd, name, mode, 0); in wfchmodat()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 808 pub fn fchmodat( in fchmodat() functions
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 126 # define HAVE_FCHMODAT_RUNTIME (fchmodat != NULL) 3228 dir_fd : dir_fd(requires='fchmodat') = None 3306 * fchmodat() doesn't currently support AT_SYMLINK_NOFOLLOW! in os_chmod_impl() 3315 result = fchmodat(dir_fd, path->narrow, mode, in os_chmod_impl()
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3535 pub fn fchmodat( in fchmodat() functions
|