Lines Matching defs:path
19 * int statx(int fd, const char *path, int flags, unsigned int mask, struct statx *buf);
20 * int stat(const char *path, struct stat *buf);
21 * int fstatat(int fd, const char *path, struct stat *buf, int flag);
23 * int lstat(const char *path, struct stat *buf);
27 int _sys_statx(int fd, const char *path, int flags, unsigned int mask, struct statx *buf)
30 return __nolibc_syscall5(__NR_statx, fd, path, flags, mask, buf);
32 return __nolibc_enosys(__func__, fd, path, flags, mask, buf);
37 int statx(int fd, const char *path, int flags, unsigned int mask, struct statx *buf)
39 return __sysret(_sys_statx(fd, path, flags, mask, buf));
44 int fstatat(int fd, const char *path, struct stat *buf, int flag)
49 ret = __sysret(_sys_statx(fd, path, flag | AT_NO_AUTOMOUNT, STATX_BASIC_STATS, &statx));
74 int stat(const char *path, struct stat *buf)
76 return fstatat(AT_FDCWD, path, buf, 0);
86 int lstat(const char *path, struct stat *buf)
88 return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);