Lines Matching defs:mode
41 #include <sys/mode.h>
47 * Change mode of file.
50 fchmodat(int fd, char *path, int mode, int flag)
58 vattr.va_mode = mode & MODEMASK;
67 * Change mode of file given path name.
70 chmod(char *path, int mode)
72 return (fchmodat(AT_FDCWD, path, mode, 0));
76 * Change mode of file given file descriptor.
79 fchmod(int fd, int mode)
81 return (fchmodat(fd, NULL, mode, 0));