Lines Matching full:read
10 * read-only data in flash ICs, or similar.
12 * The interface offers functions to read the usual standard data types (bool,
16 * If for example the board had a read-only serial number flash IC, we could
31 * to read the serial number.
40 * This operation might take a long time (e.g. read from EEPROM,
50 * get_bool() - Read a specific bool data value that describes the
53 * @id: A unique identifier for the bool value to be read.
54 * @val: Pointer to a buffer that receives the value read.
61 * get_int() - Read a specific int data value that describes the
64 * @id: A unique identifier for the int value to be read.
65 * @val: Pointer to a buffer that receives the value read.
72 * get_str() - Read a specific string data value that describes the
75 * @id: A unique identifier for the string value to be read.
77 * @val: Pointer to a buffer that receives the value read.
96 * board_get_bool() - Read a specific bool data value that describes the
99 * @id: A unique identifier for the bool value to be read.
100 * @val: Pointer to a buffer that receives the value read.
107 * board_get_int() - Read a specific int data value that describes the
110 * @id: A unique identifier for the int value to be read.
111 * @val: Pointer to a buffer that receives the value read.
118 * board_get_str() - Read a specific string data value that describes the
121 * @id: A unique identifier for the string value to be read.
123 * @val: Pointer to a buffer that receives the value read.