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.
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
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
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
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
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
773 * debugfs_create_atomic_t - create a debugfs file that is used to read and
780 * @value: a pointer to the variable that the file should read to and write
836 .read = debugfs_read_file_bool,
843 .read = debugfs_read_file_bool,
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
866 * set, it can be read from, and written to.
964 .read = debugfs_read_file_str,
971 .read = debugfs_read_file_str,
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
994 * set, it can be read from, and written to.
1020 .read = read_file_blob,
1026 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
1028 * @mode: the read permission that the file should have (other permissions are
1038 * read from. Writing is not supported.
1118 .read = u32_array_read,
1123 * debugfs_create_u32_array - create a debugfs file that is used to read u32
1133 * @array as data. If the @mode variable is so set it can be read from.
1214 * is so set it can be read from. Writing is not supported.
1227 int (*read)(struct seq_file *seq, void *data);
1235 return single_open(f, entry->read, entry->dev);
1242 .read = seq_read,
1269 entry->read = read_fn;