Lines Matching refs:dentry
28 struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
33 dentry pointer which can be used to create files in the directory (and to
41 struct dentry *debugfs_create_file(const char *name, umode_t mode,
42 struct dentry *parent, void *data,
51 the return value will be a dentry pointer to the created file, NULL for
57 struct dentry *debugfs_create_file_size(const char *name, umode_t mode,
58 struct dentry *parent, void *data,
70 struct dentry *debugfs_create_u8(const char *name, umode_t mode,
71 struct dentry *parent, u8 *value);
72 struct dentry *debugfs_create_u16(const char *name, umode_t mode,
73 struct dentry *parent, u16 *value);
74 struct dentry *debugfs_create_u32(const char *name, umode_t mode,
75 struct dentry *parent, u32 *value);
76 struct dentry *debugfs_create_u64(const char *name, umode_t mode,
77 struct dentry *parent, u64 *value);
84 struct dentry *debugfs_create_x8(const char *name, umode_t mode,
85 struct dentry *parent, u8 *value);
86 struct dentry *debugfs_create_x16(const char *name, umode_t mode,
87 struct dentry *parent, u16 *value);
88 struct dentry *debugfs_create_x32(const char *name, umode_t mode,
89 struct dentry *parent, u32 *value);
90 struct dentry *debugfs_create_x64(const char *name, umode_t mode,
91 struct dentry *parent, u64 *value);
98 struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
99 struct dentry *parent,
107 struct dentry *debugfs_create_bool(const char *name, umode_t mode,
108 struct dentry *parent, bool *value);
116 struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
117 struct dentry *parent, atomic_t *value)
130 struct dentry *debugfs_create_blob(const char *name, umode_t mode,
131 struct dentry *parent,
158 struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
159 struct dentry *parent,
171 struct dentry *debugfs_create_u32_array(const char *name, umode_t mode,
172 struct dentry *parent,
181 struct dentry *debugfs_create_devm_seqfile(struct device *dev,
183 struct dentry *parent,
193 struct dentry *debugfs_rename(struct dentry *old_dir,
194 struct dentry *old_dentry,
195 struct dentry *new_dir,
198 struct dentry *debugfs_create_symlink(const char *name,
199 struct dentry *parent,
215 void debugfs_remove(struct dentry *dentry);
217 The dentry value can be NULL, in which case nothing will be removed.
219 Once upon a time, debugfs users were required to remember the dentry
224 void debugfs_remove_recursive(struct dentry *dentry);
226 If this function is passed a pointer for the dentry corresponding to the