Searched defs:bufio (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/io/
H A Dbufio.c0 /* bufio.c - buffered io access */
26 #include <grub/bufio.h>
50 grub_bufio_t bufio = 0; local
65 bufio = grub_malloc (sizeof (struct grub_bufio) + size);
66 if (! bufio)
72 bufio->file = io;
73 bufio->block_size = size;
74 bufio->buffer_len = 0;
75 bufio->buffer_at = 0;
80 file->data = bufio;
112 grub_bufio_t bufio = file->data; local
193 grub_bufio_t bufio = file->data; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dnet.c34 #include <grub/bufio.h>
1269 struct grub_file *file, *bufio; local
1285 bufio = grub_bufio_open (file, 32768);
1286 if (! bufio)
1294 grub_memcpy (file_out, bufio, sizeof (struct grub_file));
1295 grub_free (bufio);

Completed in 18 milliseconds