Lines Matching defs:mode
141 static int xmp_mknod(const char *path, mode_t mode, dev_t rdev)
145 res = mknod_wrapper(AT_FDCWD, path, NULL, mode, rdev);
152 static int xmp_mkdir(const char *path, mode_t mode)
156 res = mkdir(path, mode);
221 static int xmp_chmod(const char *path, mode_t mode,
227 res = chmod(path, mode);
278 static int xmp_create(const char *path, mode_t mode,
283 res = open(path, fi->flags, mode);
381 static int xmp_fallocate(const char *path, int mode,
389 if (mode)