• Home
  • Raw
  • Download

Lines Matching refs:dentry

46 extern struct dentry *arch_debugfs_dir;
68 typedef struct vfsmount *(*debugfs_automount_t)(struct dentry *, void *);
72 struct dentry *debugfs_lookup(const char *name, struct dentry *parent);
74 struct dentry *debugfs_create_file(const char *name, umode_t mode,
75 struct dentry *parent, void *data,
77 struct dentry *debugfs_create_file_unsafe(const char *name, umode_t mode,
78 struct dentry *parent, void *data,
82 struct dentry *parent, void *data,
86 struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
88 struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
91 struct dentry *debugfs_create_automount(const char *name,
92 struct dentry *parent,
96 void debugfs_remove(struct dentry *dentry);
99 void debugfs_lookup_and_remove(const char *name, struct dentry *parent);
103 int debugfs_file_get(struct dentry *dentry);
104 void debugfs_file_put(struct dentry *dentry);
113 struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
114 struct dentry *new_dir, const char *new_name);
116 void debugfs_create_u8(const char *name, umode_t mode, struct dentry *parent,
118 void debugfs_create_u16(const char *name, umode_t mode, struct dentry *parent,
120 void debugfs_create_u32(const char *name, umode_t mode, struct dentry *parent,
122 void debugfs_create_u64(const char *name, umode_t mode, struct dentry *parent,
124 void debugfs_create_ulong(const char *name, umode_t mode, struct dentry *parent,
126 void debugfs_create_x8(const char *name, umode_t mode, struct dentry *parent,
128 void debugfs_create_x16(const char *name, umode_t mode, struct dentry *parent,
130 void debugfs_create_x32(const char *name, umode_t mode, struct dentry *parent,
132 void debugfs_create_x64(const char *name, umode_t mode, struct dentry *parent,
135 struct dentry *parent, size_t *value);
137 struct dentry *parent, atomic_t *value);
138 void debugfs_create_bool(const char *name, umode_t mode, struct dentry *parent,
141 struct dentry *parent, char **value);
143 struct dentry *debugfs_create_blob(const char *name, umode_t mode,
144 struct dentry *parent,
148 struct dentry *parent,
155 struct dentry *parent,
159 struct dentry *parent,
181 void (*cancel)(struct dentry *, void *);
202 static inline struct dentry *debugfs_lookup(const char *name, in debugfs_lookup()
203 struct dentry *parent) in debugfs_lookup()
208 static inline struct dentry *debugfs_create_file(const char *name, umode_t mode, in debugfs_create_file()
209 struct dentry *parent, void *data, in debugfs_create_file()
215 static inline struct dentry *debugfs_create_file_unsafe(const char *name, in debugfs_create_file_unsafe()
216 umode_t mode, struct dentry *parent, in debugfs_create_file_unsafe()
224 struct dentry *parent, void *data, in debugfs_create_file_size()
229 static inline struct dentry *debugfs_create_dir(const char *name, in debugfs_create_dir()
230 struct dentry *parent) in debugfs_create_dir()
235 static inline struct dentry *debugfs_create_symlink(const char *name, in debugfs_create_symlink()
236 struct dentry *parent, in debugfs_create_symlink()
242 static inline struct dentry *debugfs_create_automount(const char *name, in debugfs_create_automount()
243 struct dentry *parent, in debugfs_create_automount()
250 static inline void debugfs_remove(struct dentry *dentry) in debugfs_remove() argument
253 static inline void debugfs_remove_recursive(struct dentry *dentry) in debugfs_remove_recursive() argument
257 struct dentry *parent) in debugfs_lookup_and_remove()
262 static inline int debugfs_file_get(struct dentry *dentry) in debugfs_file_get() argument
267 static inline void debugfs_file_put(struct dentry *dentry) in debugfs_file_put() argument
290 static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, in debugfs_rename()
291 struct dentry *new_dir, char *new_name) in debugfs_rename()
297 struct dentry *parent, u8 *value) { } in debugfs_create_u8()
300 struct dentry *parent, u16 *value) { } in debugfs_create_u16()
303 struct dentry *parent, u32 *value) { } in debugfs_create_u32()
306 struct dentry *parent, u64 *value) { } in debugfs_create_u64()
309 struct dentry *parent, in debugfs_create_ulong()
313 struct dentry *parent, u8 *value) { } in debugfs_create_x8()
316 struct dentry *parent, u16 *value) { } in debugfs_create_x16()
319 struct dentry *parent, u32 *value) { } in debugfs_create_x32()
322 struct dentry *parent, u64 *value) { } in debugfs_create_x64()
325 struct dentry *parent, size_t *value) in debugfs_create_size_t()
329 struct dentry *parent, in debugfs_create_atomic_t()
334 struct dentry *parent, bool *value) { } in debugfs_create_bool()
337 struct dentry *parent, in debugfs_create_str()
341 static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode, in debugfs_create_blob()
342 struct dentry *parent, in debugfs_create_blob()
349 struct dentry *parent, in debugfs_create_regset32()
365 struct dentry *parent, in debugfs_create_u32_array()
372 struct dentry *parent, in debugfs_create_devm_seqfile()
413 struct dentry *parent, in debugfs_create_xul()