Lines Matching defs: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
620 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
624 struct dentry *parent, unsigned long *value)
626 return debugfs_create_mode_unsafe(name, mode, parent, value,
652 * 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
660 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
666 * @value: a pointer to the variable that the file should read to and write
670 u8 *value)
672 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x8,
678 * debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit value
684 * @value: a pointer to the variable that the file should read to and write
688 u16 *value)
690 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x16,
696 * debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit value
702 * @value: a pointer to the variable that the file should read to and write
706 u32 *value)
708 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x32,
714 * debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit value
720 * @value: a pointer to the variable that the file should read to and write
724 u64 *value)
726 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_x64,
748 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
754 * @value: a pointer to the variable that the file should read to and write
758 struct dentry *parent, size_t *value)
760 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_size_t,
784 * write an atomic_t value
790 * @value: a pointer to the variable that the file should read to and write
794 struct dentry *parent, atomic_t *value)
796 debugfs_create_mode_unsafe(name, mode, parent, value, &fops_atomic_t,
866 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
872 * @value: a pointer to the variable that the file should read to and write
876 * contains the value of the variable @value. If the @mode variable is so
885 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
889 struct dentry *parent, bool *value)
891 return debugfs_create_mode_unsafe(name, mode, parent, value, &fops_bool,
938 * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will