Lines Matching refs:name
219 #define FULL_PROXY_FUNC(name, ret_type, filp, proto, args) \
220 static ret_type full_proxy_ ## name(proto) \
230 r = real_fops->name(args); \
420 static struct dentry *debugfs_create_mode_unsafe(const char *name, umode_t mode,
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);
454 * @name: a pointer to a string containing the name of the file to create.
462 * This function creates a file in debugfs with the given name that
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,
490 * @name: a pointer to a string containing the name of the file to create.
498 * This function creates a file in debugfs with the given name that
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,
526 * @name: a pointer to a string containing the name of the file to create.
534 * This function creates a file in debugfs with the given name that
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,
563 * @name: a pointer to a string containing the name of the file to create.
571 * This function creates a file in debugfs with the given name that
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,
602 * @name: a pointer to a string containing the name of the file to create.
610 * This function creates a file in debugfs with the given name that
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,
651 * @name: a pointer to a string containing the name of the file to create.
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,
669 * @name: a pointer to a string containing the name of the file to create.
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,
687 * @name: a pointer to a string containing the name of the file to create.
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,
705 * @name: a pointer to a string containing the name of the file to create.
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,
739 * @name: a pointer to a string containing the name of the file to create.
747 void debugfs_create_size_t(const char *name, umode_t mode,
750 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_size_t,
775 * @name: a pointer to a string containing the name of the file to create.
783 void debugfs_create_atomic_t(const char *name, umode_t mode,
786 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_atomic_t,
856 * @name: a pointer to a string containing the name of the file to create.
864 * This function creates a file in debugfs with the given name that
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,
984 * @name: a pointer to a string containing the name of the file to create.
992 * This function creates a file in debugfs with the given name that
996 void debugfs_create_str(const char *name, umode_t mode,
999 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_str,
1027 * @name: a pointer to a string containing the name of the file to create.
1036 * This function creates a file in debugfs with the given name that exports
1049 struct dentry *debugfs_create_blob(const char *name, umode_t mode,
1053 return debugfs_create_file_unsafe(name, mode & 0444, parent, blob, &fops_blob);
1125 * @name: a pointer to a string containing the name of the file to create.
1132 * This function creates a file in debugfs with the given name that exports
1137 void debugfs_create_u32_array(const char *name, umode_t mode,
1141 debugfs_create_file_unsafe(name, mode, parent, array, &u32_array_fops);
1176 seq_printf(s, "%s = 0x%08x\n", regs->name,
1203 * @name: a pointer to a string containing the name of the file to create.
1212 * This function creates a file in debugfs with the given name that reports
1216 void debugfs_create_regset32(const char *name, umode_t mode,
1220 debugfs_create_file(name, mode, parent, regset, &debugfs_regset32_fops);
1250 * @name: name of the debugfs file.
1256 void debugfs_create_devm_seqfile(struct device *dev, const char *name,
1272 debugfs_create_file(name, S_IRUGO, parent, entry,