Lines Matching defs:read
42 .read = default_read_file,
239 FULL_PROXY_FUNC(read, ssize_t, filp,
297 if (real_fops->read)
298 proxy_fops->read = full_proxy_read;
426 /* if there are no write bits set, make read only */
430 /* if there are no read bits set, make write only */
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
464 * set, it can be read from, and written to.
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
500 * set, it can be read from, and written to.
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
536 * set, it can be read from, and written to.
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
573 * set, it can be read from, and written to.
600 * debugfs_create_ulong - create a debugfs file that is used to read and write
607 * @value: a pointer to the variable that the file should read to and write
612 * set, it can be read from, and written to.
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
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
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
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
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
783 * debugfs_create_atomic_t - create a debugfs file that is used to read and
790 * @value: a pointer to the variable that the file should read to and write
847 .read = debugfs_read_file_bool,
854 .read = debugfs_read_file_bool,
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
877 * set, it can be read from, and written to.
913 .read = read_file_blob,
919 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
930 * read from. Writing is not supported.
1010 .read = u32_array_read,
1015 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1025 * @array as data. If the @mode variable is so set it can be read from.
1098 .read = seq_read,
1116 * is so set it can be read from. Writing is not supported.
1129 int (*read)(struct seq_file *seq, void *data);
1137 return single_open(f, entry->read, entry->dev);
1144 .read = seq_read,
1171 entry->read = read_fn;