Lines Matching full:read

45 	.read =		default_read_file,
77 * debugfs_create_u8 - create a debugfs file that is used to read and write an unsigned 8-bit value
83 * @value: a pointer to the variable that the file should read to and write
88 * set, it can be read from, and written to.
103 /* if there are no write bits set, make read only */ in debugfs_create_u8()
106 /* if there are no read bits set, make write only */ in debugfs_create_u8()
129 …* debugfs_create_u16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
135 * @value: a pointer to the variable that the file should read to and write
140 * set, it can be read from, and written to.
155 /* if there are no write bits set, make read only */ in debugfs_create_u16()
158 /* if there are no read bits set, make write only */ in debugfs_create_u16()
181 …* debugfs_create_u32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
187 * @value: a pointer to the variable that the file should read to and write
192 * set, it can be read from, and written to.
207 /* if there are no write bits set, make read only */ in debugfs_create_u32()
210 /* if there are no read bits set, make write only */ in debugfs_create_u32()
234 …* debugfs_create_u64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
240 * @value: a pointer to the variable that the file should read to and write
245 * set, it can be read from, and written to.
260 /* if there are no write bits set, make read only */ in debugfs_create_u64()
263 /* if there are no read bits set, make write only */ in debugfs_create_u64()
286 …* debugfs_create_x{8,16,32,64} - create a debugfs file that is used to read and write an unsigned …
294 * debugfs_create_x8 - create a debugfs file that is used to read and write an unsigned 8-bit value
300 * @value: a pointer to the variable that the file should read to and write
306 /* if there are no write bits set, make read only */ in debugfs_create_x8()
309 /* if there are no read bits set, make write only */ in debugfs_create_x8()
318 …* debugfs_create_x16 - create a debugfs file that is used to read and write an unsigned 16-bit val…
324 * @value: a pointer to the variable that the file should read to and write
330 /* if there are no write bits set, make read only */ in debugfs_create_x16()
333 /* if there are no read bits set, make write only */ in debugfs_create_x16()
342 …* debugfs_create_x32 - create a debugfs file that is used to read and write an unsigned 32-bit val…
348 * @value: a pointer to the variable that the file should read to and write
354 /* if there are no write bits set, make read only */ in debugfs_create_x32()
357 /* if there are no read bits set, make write only */ in debugfs_create_x32()
366 …* debugfs_create_x64 - create a debugfs file that is used to read and write an unsigned 64-bit val…
372 * @value: a pointer to the variable that the file should read to and write
397 * debugfs_create_size_t - create a debugfs file that is used to read and write an size_t value
403 * @value: a pointer to the variable that the file should read to and write
448 .read = read_file_bool,
455 * debugfs_create_bool - create a debugfs file that is used to read and write a boolean value
461 * @value: a pointer to the variable that the file should read to and write
466 * set, it can be read from, and written to.
494 .read = read_file_blob,
500 * debugfs_create_blob - create a debugfs file that is used to read a binary blob
511 * read from. Writing is not supported.
584 .read = seq_read,
602 * is so set it can be read from. Writing is not supported.