Lines Matching refs:read
113 drv.read_cb = my_read_cb; /* Callback to read a file */
118 drv.dir_open_cb = my_dir_open_cb; /* Callback to open directory to read its content */
119 drv.dir_read_cb = my_dir_read_cb; /* Callback to read a directory's content */
231 The example below shows how to read from a file:
251 This example shows how to read a directory's content. It's up to the
270 /* fn is empty if there are no more files to read. */
292 - read
310 It has the potential to call the driver's ``read`` fewer
312 \>= the size of the file, ``read`` will only be called once. This strategy is good
314 since data will be buffered that will be discarded after the next seek and read.
346 H -->|yes| I["read the remaining bytes
349 H -->|no| J["eagerly read the real file
352 read call can"]
360 L -->|yes| M["read the real file to
362 L -->|no| N["eagerly read the real file
365 read call can"]