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

  /external/qemu/block/
raw-win32.c 84 if (flags & BDRV_O_RDWR) {
337 if (flags & BDRV_O_RDWR) {
raw-posix.c 138 if (bdrv_flags & BDRV_O_RDWR) {
    [all...]
qcow2.c 1035 bdrv_open(bs, filename, BDRV_O_CACHE_WB | BDRV_O_RDWR, drv);
    [all...]
  /external/qemu/
blockdev.c 483 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
594 bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR;
block.c 454 open_flags |= BDRV_O_RDWR;
471 bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR);
618 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
626 bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR);
777 rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR, drv);
782 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, drv);
833 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, drv);
    [all...]
  /external/qemu/include/block/
block.h 30 #define BDRV_O_RDWR 0x0002

Completed in 51 milliseconds