Lines Matching refs:__path
139 int chmod(const char* __path, mode_t __mode);
141 int mkdir(const char* __path, mode_t __mode);
145 int fstatat(int __dir_fd, const char* __path, struct stat* __buf, int __flags);
146 int fstatat64(int __dir_fd, const char* __path, struct stat64* __buf, int __flags) __RENAME_STAT64(…
147 int lstat(const char* __path, struct stat* __buf);
148 int lstat64(const char* __path, struct stat64* __buf) __RENAME_STAT64(lstat, 3, 21);
149 int stat(const char* __path, struct stat* __buf);
150 int stat64(const char* __path, struct stat64* __buf) __RENAME_STAT64(stat, 3, 21);
152 int mknod(const char* __path, mode_t __mode, dev_t __dev);
160 int mkfifo(const char* __path, mode_t __mode) __INTRODUCED_IN(21);
165 int mkfifoat(int __dir_fd, const char* __path, mode_t __mode) __INTRODUCED_IN(23);
167 int fchmodat(int __dir_fd, const char* __path, mode_t __mode, int __flags);
168 int mkdirat(int __dir_fd, const char* __path, mode_t __mode);
169 int mknodat(int __dir_fd, const char* __path, mode_t __mode, dev_t __dev) __INTRODUCED_IN(21);
173 int utimensat(int __dir_fd, const char* __path, const struct timespec __times[2], int __flags);
183 int statx(int __dir_fd, const char* __path, int __flags, unsigned __mask, struct statx* __buf) __IN…