Lines Matching refs:value

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);
453 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
459 * @value: a pointer to the variable that the file should read to and write
463 * contains the value of the variable @value. If the @mode variable is so
467 u8 *value)
469 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u8,
489 * debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit value
495 * @value: a pointer to the variable that the file should read to and write
499 * contains the value of the variable @value. If the @mode variable is so
503 u16 *value)
505 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u16,
525 * debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit value
531 * @value: a pointer to the variable that the file should read to and write
535 * contains the value of the variable @value. If the @mode variable is so
539 u32 *value)
541 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u32,
562 * debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit value
568 * @value: a pointer to the variable that the file should read to and write
572 * contains the value of the variable @value. If the @mode variable is so
576 u64 *value)
578 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_u64,
601 * an unsigned long value.
607 * @value: a pointer to the variable that the file should read to and write
611 * contains the value of the variable @value. If the @mode variable is so
615 unsigned long *value)
617 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_ulong,
642 * debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned {8,16,32,64}-bit value
650 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
656 * @value: a pointer to the variable that the file should read to and write
660 u8 *value)
662 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x8,
668 * debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit value
674 * @value: a pointer to the variable that the file should read to and write
678 u16 *value)
680 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x16,
686 * debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit value
692 * @value: a pointer to the variable that the file should read to and write
696 u32 *value)
698 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x32,
704 * debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit value
710 * @value: a pointer to the variable that the file should read to and write
714 u64 *value)
716 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x64,
738 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
744 * @value: a pointer to the variable that the file should read to and write
748 struct dentry *parent, size_t *value)
750 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_size_t,
774 * write an atomic_t value
780 * @value: a pointer to the variable that the file should read to and write
784 struct dentry *parent, atomic_t *value)
786 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_atomic_t,
855 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
861 * @value: a pointer to the variable that the file should read to and write
865 * contains the value of the variable @value. If the @mode variable is so
869 bool *value)
871 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_bool,
983 * debugfs_create_str - create a debugfs file that is used to read and write a string value
989 * @value: a pointer to the variable that the file should read to and write
993 * contains the value of the variable @value. If the @mode variable is so
997 struct dentry *parent, char **value)
999 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_str,
1046 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will