/external/qemu/block/ |
nbd.c | 180 .bdrv_file_open = nbd_open,
|
raw-win32.c | 245 .bdrv_file_open = raw_open, 407 .bdrv_file_open = hdev_open,
|
raw-posix.c | 744 .bdrv_file_open = raw_open, 1006 .bdrv_file_open = hdev_open, 1121 .bdrv_file_open = floppy_open, 1221 .bdrv_file_open = cdrom_open, [all...] |
vvfat.c | [all...] |
/external/qemu/ |
block_int.h | 55 int (*bdrv_file_open)(BlockDriverState *bs, const char *filename, int flags); member in struct:BlockDriver
|
block.h | 70 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags);
|
block.c | 295 /* TODO Drivers without bdrv_file_open must be specified explicitly */ 340 ret = bdrv_file_open(&bs, filename, 0); 456 if (drv->bdrv_file_open) { 457 ret = drv->bdrv_file_open(bs, filename, open_flags); 459 ret = bdrv_file_open(&bs->file, filename, open_flags); 497 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags) function [all...] |
qemu-io.c | [all...] |