HomeSort by relevance Sort by last modified time
    Searched refs:bdrv_file_open (Results 1 - 5 of 5) sorted by null

  /external/qemu/block/
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...]
  /external/qemu/include/block/
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);
  /external/qemu/
block.c 297 /* TODO Drivers without bdrv_file_open must be specified explicitly */
342 ret = bdrv_file_open(&bs, filename, 0);
458 if (drv->bdrv_file_open) {
459 ret = drv->bdrv_file_open(bs, filename, open_flags);
461 ret = bdrv_file_open(&bs->file, filename, open_flags);
499 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags) function
    [all...]

Completed in 53 milliseconds