Lines Matching refs:mode_t
47 mode_t st_mode; \
68 mode_t st_mode; \
139 int chmod(const char* __path, mode_t __mode);
140 int fchmod(int __fd, mode_t __mode);
141 int mkdir(const char* __path, mode_t __mode);
152 int mknod(const char* __path, mode_t __mode, dev_t __dev);
153 mode_t umask(mode_t __mask);
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);