Home
last modified time | relevance | path

Searched refs:isdir (Results 1 - 25 of 36) sorted by relevance

12

/kernel/linux/linux-5.10/include/trace/events/
H A Derofs.h56 TP_PROTO(struct inode *inode, int isdir),
57 TP_ARGS(inode, isdir),
64 __field(int, isdir )
72 __entry->isdir = isdir;
75 TP_printk("dev = (%d,%d), nid = %llu, blkaddr %u ofs %u, isdir %d",
78 __entry->isdir)
/kernel/linux/linux-5.10/security/apparmor/
H A Dpath.c94 int isdir = (flags & PATH_IS_DIR) ? 1 : 0; in d_namespace_path() local
95 int buflen = aa_g_path_max - isdir; in d_namespace_path()
171 if (!error && isdir && ((*name)[1] != '\0' || (*name)[0] != '/')) in d_namespace_path()
/kernel/linux/linux-6.6/security/apparmor/
H A Dpath.c94 int isdir = (flags & PATH_IS_DIR) ? 1 : 0; in d_namespace_path() local
95 int buflen = aa_g_path_max - isdir; in d_namespace_path()
171 if (!error && isdir && ((*name)[1] != '\0' || (*name)[0] != '/')) in d_namespace_path()
/kernel/linux/linux-6.6/fs/fuse/
H A Dfuse_i.h1036 int fuse_open_common(struct inode *inode, struct file *file, bool isdir);
1048 void fuse_release_common(struct file *file, bool isdir);
1261 bool isdir);
1353 unsigned int open_flags, bool isdir);
1355 unsigned int open_flags, fl_owner_t id, bool isdir);
H A Dioctl.c425 bool isdir = S_ISDIR(inode->i_mode); in fuse_priv_ioctl_prepare() local
433 if (!S_ISREG(inode->i_mode) && !isdir) in fuse_priv_ioctl_prepare()
436 return fuse_file_open(fm, get_node_id(inode), O_RDONLY, isdir); in fuse_priv_ioctl_prepare()
H A Dfile.c107 static void fuse_file_put(struct fuse_file *ff, bool sync, bool isdir) in fuse_file_put() argument
112 if (isdir ? ff->fm->fc->no_opendir : ff->fm->fc->no_open) { in fuse_file_put()
129 unsigned int open_flags, bool isdir) in fuse_file_open()
133 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN; in fuse_file_open()
141 ff->open_flags = FOPEN_KEEP_CACHE | (isdir ? FOPEN_CACHE_DIR : 0); in fuse_file_open()
142 if (isdir ? !fc->no_opendir : !fc->no_open) { in fuse_file_open()
155 if (isdir) in fuse_file_open()
162 if (isdir) in fuse_file_open()
171 bool isdir) in fuse_do_open()
173 struct fuse_file *ff = fuse_file_open(fm, nodeid, file->f_flags, isdir); in fuse_do_open()
128 fuse_file_open(struct fuse_mount *fm, u64 nodeid, unsigned int open_flags, bool isdir) fuse_file_open() argument
170 fuse_do_open(struct fuse_mount *fm, u64 nodeid, struct file *file, bool isdir) fuse_do_open() argument
221 fuse_open_common(struct inode *inode, struct file *file, bool isdir) fuse_open_common() argument
305 fuse_file_release(struct inode *inode, struct fuse_file *ff, unsigned int open_flags, fl_owner_t id, bool isdir) fuse_file_release() argument
333 fuse_release_common(struct file *file, bool isdir) fuse_release_common() argument
336 (fl_owner_t) file, isdir); fuse_release_common() local
[all...]
/kernel/linux/linux-5.10/fs/erofs/
H A Dinode.c233 static int erofs_fill_inode(struct inode *inode, int isdir) in erofs_fill_inode() argument
240 trace_erofs_fill_inode(inode, isdir); in erofs_fill_inode()
317 bool isdir) in erofs_iget()
330 err = erofs_fill_inode(inode, isdir); in erofs_iget()
315 erofs_iget(struct super_block *sb, erofs_nid_t nid, bool isdir) erofs_iget() argument
/kernel/linux/linux-5.10/include/linux/
H A Dfsnotify.h131 int isdir, struct inode *target, in fsnotify_move()
143 if (isdir) { in fsnotify_move()
129 fsnotify_move(struct inode *old_dir, struct inode *new_dir, const struct qstr *old_name, int isdir, struct inode *target, struct dentry *moved) fsnotify_move() argument
/kernel/linux/linux-6.6/include/linux/
H A Dfsnotify.h142 int isdir, struct inode *target, in fsnotify_move()
152 if (isdir) { in fsnotify_move()
140 fsnotify_move(struct inode *old_dir, struct inode *new_dir, const struct qstr *old_name, int isdir, struct inode *target, struct dentry *moved) fsnotify_move() argument
/kernel/linux/linux-5.10/fs/fuse/
H A Dfuse_i.h940 int fuse_open_common(struct inode *inode, struct file *file, bool isdir);
951 void fuse_release_common(struct file *file, bool isdir);
1160 bool isdir);
H A Dfile.c112 static void fuse_file_put(struct fuse_file *ff, bool sync, bool isdir) in fuse_file_put() argument
117 if (isdir ? ff->fm->fc->no_opendir : ff->fm->fc->no_open) { in fuse_file_put()
134 bool isdir) in fuse_do_open()
138 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN; in fuse_do_open()
146 ff->open_flags = FOPEN_KEEP_CACHE | (isdir ? FOPEN_CACHE_DIR : 0); in fuse_do_open()
147 if (isdir ? !fc->no_opendir : !fc->no_open) { in fuse_do_open()
160 if (isdir) in fuse_do_open()
167 if (isdir) in fuse_do_open()
217 int fuse_open_common(struct inode *inode, struct file *file, bool isdir) in fuse_open_common() argument
248 err = fuse_do_open(fm, get_node_id(inode), file, isdir); in fuse_open_common()
133 fuse_do_open(struct fuse_mount *fm, u64 nodeid, struct file *file, bool isdir) fuse_do_open() argument
302 fuse_release_common(struct file *file, bool isdir) fuse_release_common() argument
[all...]
/kernel/linux/linux-5.10/scripts/clang-tools/
H A Dgen_compile_commands.py209 if os.path.isdir(path):
/kernel/linux/linux-6.6/scripts/clang-tools/
H A Dgen_compile_commands.py202 if os.path.isdir(path):
/kernel/linux/linux-5.10/scripts/
H A Dspdxcheck.py270 elif os.path.isdir(p):
H A Dcheckkconfigsymbols.py300 ".log" in gitfile or os.path.isdir(gitfile) or \
/kernel/linux/linux-5.10/Documentation/sphinx/
H A Dkfigure.py98 if not path.isdir(folder):
/kernel/linux/linux-5.10/Documentation/target/
H A Dtcm_mod_builder.py28 if os.path.isdir(fabric_mod_dir_var) == True:
/kernel/linux/linux-6.6/Documentation/sphinx/
H A Dkfigure.py90 if not path.isdir(folder):
/kernel/linux/linux-6.6/tools/testing/kunit/
H A Dkunit_kernel.py175 if os.path.isdir(path):
/kernel/linux/linux-6.6/scripts/
H A Dcheckkconfigsymbols.py302 ".log" in gitfile or os.path.isdir(gitfile) or \
H A Dspdxcheck.py385 elif os.path.isdir(p):
/kernel/linux/linux-5.10/fs/ceph/
H A Dfile.c204 int fmode, bool isdir) in ceph_init_file_info()
210 inode->i_mode, isdir ? "dir" : "regular"); in ceph_init_file_info()
213 if (isdir) { in ceph_init_file_info()
203 ceph_init_file_info(struct inode *inode, struct file *file, int fmode, bool isdir) ceph_init_file_info() argument
/kernel/linux/linux-6.6/tools/perf/pmu-events/
H A Djevents.py1160 if os.path.isdir(path):
/kernel/linux/linux-5.10/fs/gfs2/
H A Dbmap.c121 int isdir = gfs2_is_dir(ip); in gfs2_unstuff_dinode() local
138 if (isdir) { in gfs2_unstuff_dinode()
/kernel/linux/linux-6.6/fs/gfs2/
H A Dbmap.c97 int isdir = gfs2_is_dir(ip); in __gfs2_unstuff_inode() local
112 if (isdir) { in __gfs2_unstuff_inode()

Completed in 29 milliseconds

12