Searched refs:bdrv_truncate (Results 1 – 7 of 7) sorted by relevance
/external/qemu/block/ |
D | raw.c | 190 return bdrv_truncate(bs->file, offset); in raw_truncate() 258 .bdrv_truncate = raw_truncate,
|
D | raw-win32.c | 251 .bdrv_truncate = raw_truncate,
|
D | qcow2.c | 1101 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,
|
D | raw-posix.c | 755 .bdrv_truncate = raw_truncate,
|
/external/qemu/include/block/ |
D | block_int.h | 84 int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset); member
|
D | block.h | 89 int bdrv_truncate(BlockDriverState *bs, int64_t offset);
|
/external/qemu/ |
D | block.c | 1109 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()
|