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

  /external/qemu/include/block/
block_int.h 55 int (*bdrv_file_open)(BlockDriverState *bs, const char *filename, int flags); member in struct:BlockDriver
  /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 191 milliseconds