Lines Matching defs:mode
212 static int xmp_mknod(const char *path, mode_t mode, dev_t rdev)
216 if (S_ISFIFO(mode))
217 res = mkfifo(path, mode);
219 res = mknod(path, mode, rdev);
226 static int xmp_mkdir(const char *path, mode_t mode)
230 res = mkdir(path, mode);
296 static int xmp_chmod(const char *path, mode_t mode,
302 res = fchmod(fi->fh, mode);
304 res = chmod(path, mode);
360 static int xmp_create(const char *path, mode_t mode, struct fuse_file_info *fi)
364 fd = open(path, fi->flags, mode);
503 static int xmp_fallocate(const char *path, int mode,
508 if (mode)