Lines Matching refs:parent
421 struct dentry *parent, void *value,
428 return debugfs_create_file_unsafe(name, mode, parent, value,
432 return debugfs_create_file_unsafe(name, mode, parent, value,
435 return debugfs_create_file_unsafe(name, mode, parent, value, fops);
456 * @parent: a pointer to the parent dentry for this file. This should be a
466 void debugfs_create_u8(const char *name, umode_t mode, struct dentry *parent,
469 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u8,
492 * @parent: a pointer to the parent dentry for this file. This should be a
502 void debugfs_create_u16(const char *name, umode_t mode, struct dentry *parent,
505 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u16,
528 * @parent: a pointer to the parent dentry for this file. This should be a
538 void debugfs_create_u32(const char *name, umode_t mode, struct dentry *parent,
541 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u32,
565 * @parent: a pointer to the parent dentry for this file. This should be a
575 void debugfs_create_u64(const char *name, umode_t mode, struct dentry *parent,
578 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u64,
604 * @parent: a pointer to the parent dentry for this file. This should be a
614 void debugfs_create_ulong(const char *name, umode_t mode, struct dentry *parent,
617 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_ulong,
653 * @parent: a pointer to the parent dentry for this file. This should be a
659 void debugfs_create_x8(const char *name, umode_t mode, struct dentry *parent,
662 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x8,
671 * @parent: a pointer to the parent dentry for this file. This should be a
677 void debugfs_create_x16(const char *name, umode_t mode, struct dentry *parent,
680 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x16,
689 * @parent: a pointer to the parent dentry for this file. This should be a
695 void debugfs_create_x32(const char *name, umode_t mode, struct dentry *parent,
698 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x32,
707 * @parent: a pointer to the parent dentry for this file. This should be a
713 void debugfs_create_x64(const char *name, umode_t mode, struct dentry *parent,
716 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x64,
741 * @parent: a pointer to the parent dentry for this file. This should be a
748 struct dentry *parent, size_t *value)
750 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_size_t,
777 * @parent: a pointer to the parent dentry for this file. This should be a
784 struct dentry *parent, atomic_t *value)
786 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_atomic_t,
858 * @parent: a pointer to the parent dentry for this file. This should be a
868 void debugfs_create_bool(const char *name, umode_t mode, struct dentry *parent,
871 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_bool,
986 * @parent: a pointer to the parent dentry for this file. This should be a
997 struct dentry *parent, char **value)
999 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_str,
1030 * @parent: a pointer to the parent dentry for this file. This should be a
1050 struct dentry *parent,
1053 return debugfs_create_file_unsafe(name, mode & 0444, parent, blob, &fops_blob);
1127 * @parent: a pointer to the parent dentry for this file. This should be a
1138 struct dentry *parent,
1141 debugfs_create_file_unsafe(name, mode, parent, array, &u32_array_fops);
1205 * @parent: a pointer to the parent dentry for this file. This should be a
1217 struct dentry *parent,
1220 debugfs_create_file(name, mode, parent, regset, &debugfs_regset32_fops);
1251 * @parent: a pointer to the parent dentry for this file. This should be a
1257 struct dentry *parent,
1262 if (IS_ERR(parent))
1272 debugfs_create_file(name, S_IRUGO, parent, entry,