Home
last modified time | relevance | path

Searched refs:bdrv_truncate (Results 1 – 7 of 7) sorted by relevance

/external/qemu/block/
Draw.c190 return bdrv_truncate(bs->file, offset); in raw_truncate()
258 .bdrv_truncate = raw_truncate,
Draw-win32.c251 .bdrv_truncate = raw_truncate,
Dqcow2.c1101 ret = bdrv_truncate(bs->file, s->l1_table_offset + l1_length); in qcow_make_empty()
1163 bdrv_truncate(bs->file, cluster_offset); in qcow_write_compressed()
1348 .bdrv_truncate = qcow2_truncate,
Draw-posix.c755 .bdrv_truncate = raw_truncate,
/external/qemu/include/block/
Dblock_int.h84 int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset); member
Dblock.h89 int bdrv_truncate(BlockDriverState *bs, int64_t offset);
/external/qemu/
Dblock.c1109 int bdrv_truncate(BlockDriverState *bs, int64_t offset) in bdrv_truncate() function
1115 if (!drv->bdrv_truncate) in bdrv_truncate()
1119 ret = drv->bdrv_truncate(bs, offset); in bdrv_truncate()