Home | History | Annotate | Download | only in import

Lines Matching refs:Fd

36 int openat_permissive (int fd, char const *file, int flags, mode_t mode,
42 # define openat_permissive(Fd, File, Flags, Mode, Cwd_errno) \
43 openat (Fd, File, Flags, Mode)
62 chownat (int fd, char const *file, uid_t owner, gid_t group)
64 return fchownat (fd, file, owner, group, 0);
68 lchownat (int fd, char const *file, uid_t owner, gid_t group)
70 return fchownat (fd, file, owner, group, AT_SYMLINK_NOFOLLOW);
82 chmodat (int fd, char const *file, mode_t mode)
84 return fchmodat (fd, file, mode, 0);
88 lchmodat (int fd, char const *file, mode_t mode)
90 return fchmodat (fd, file, mode, AT_SYMLINK_NOFOLLOW);
103 statat (int fd, char const *name, struct stat *st)
105 return fstatat (fd, name, st, 0);
110 lstatat (int fd, char const *name, struct stat *st)
112 return fstatat (fd, name, st, AT_SYMLINK_NOFOLLOW);