/qemu/block/ |
H A D | crypto.c | 625 g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL; in block_crypto_measure() 655 create_opts = block_crypto_create_opts_init(cryptoopts, &local_err); in block_crypto_measure() 657 if (!create_opts) { in block_crypto_measure() 661 if (!qcrypto_block_calculate_payload_offset(create_opts, NULL, in block_crypto_measure() 705 QCryptoBlockCreateOptions create_opts; in block_crypto_co_create_luks() local 726 create_opts = (QCryptoBlockCreateOptions) { in block_crypto_co_create_luks() 745 ret = block_crypto_co_create_generic(hdr_bs, 0, &create_opts, in block_crypto_co_create_luks() 765 ret = block_crypto_co_create_generic(bs, luks_opts->size, &create_opts, in block_crypto_co_create_luks() 788 QCryptoBlockCreateOptions *create_opts = NULL; in block_crypto_co_create_opts_luks() local 817 create_opts = block_crypto_create_opts_init(cryptoopts, errp); in block_crypto_co_create_opts_luks() [all …]
|
H A D | gluster.c | 1570 .create_opts = &qemu_gluster_create_opts, 1599 .create_opts = &qemu_gluster_create_opts, 1628 .create_opts = &qemu_gluster_create_opts,
|
H A D | nbd.c | 2148 .create_opts = &bdrv_create_opts_simple, 2176 .create_opts = &bdrv_create_opts_simple, 2204 .create_opts = &bdrv_create_opts_simple,
|
H A D | raw-format.c | 670 .create_opts = &raw_create_opts,
|
H A D | qcow2.c | 3915 qdict = qemu_opts_to_qdict_filtered(opts, NULL, bdrv_qcow2.create_opts, in qcow2_co_create_opts() 5130 g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL; in qcow2_measure() 5134 create_opts = block_crypto_create_opts_init(cryptoopts, errp); in qcow2_measure() 5136 if (!create_opts) { in qcow2_measure() 5140 if (!qcrypto_block_calculate_payload_offset(create_opts, in qcow2_measure() 6195 .create_opts = &qcow2_create_opts,
|
H A D | file-posix.c | 4013 .create_opts = &raw_create_opts, 4449 .create_opts = &bdrv_create_opts_simple, 4588 .create_opts = &bdrv_create_opts_simple, 4714 .create_opts = &bdrv_create_opts_simple,
|
H A D | file-win32.c | 768 .create_opts = &raw_create_opts,
|
H A D | nfs.c | 882 .create_opts = &nfs_create_opts,
|
H A D | vdi.c | 1058 .create_opts = &vdi_create_opts,
|
H A D | iscsi.c | 2435 .create_opts = &bdrv_create_opts_simple, 2474 .create_opts = &bdrv_create_opts_simple,
|
H A D | vpc.c | 1252 .create_opts = &vpc_create_opts,
|
H A D | qcow.c | 1209 .create_opts = &qcow_create_opts,
|
H A D | ssh.c | 1375 .create_opts = &ssh_create_opts,
|
H A D | parallels.c | 1462 .create_opts = ¶llels_create_opts,
|
H A D | rbd.c | 1827 .create_opts = &qemu_rbd_create_opts,
|
H A D | qed.c | 1649 .create_opts = &qed_create_opts,
|
H A D | nvme.c | 1635 .create_opts = &bdrv_create_opts_simple,
|
H A D | vhdx.c | 2265 .create_opts = &vhdx_create_opts,
|
H A D | vmdk.c | 3184 .create_opts = &vmdk_create_opts,
|
/qemu/ |
H A D | qemu-img.c | 309 QemuOptsList *create_opts = NULL; in print_block_option_help() local 319 if (!drv->create_opts) { in print_block_option_help() 324 create_opts = qemu_opts_append(create_opts, drv->create_opts); in print_block_option_help() 329 qemu_opts_free(create_opts); in print_block_option_help() 332 if (!proto_drv->create_opts) { in print_block_option_help() 335 qemu_opts_free(create_opts); in print_block_option_help() 338 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); in print_block_option_help() 346 qemu_opts_print_help(create_opts, false); in print_block_option_help() 347 qemu_opts_free(create_opts); in print_block_option_help() 2245 QemuOptsList *create_opts = NULL; in img_convert() local [all …]
|
H A D | block.c | 710 if (!drv->create_opts) { in bdrv_co_create_file() 731 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); in bdrv_co_create_file() 3941 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, in bdrv_append_temp_snapshot() 7319 QemuOptsList *create_opts = NULL; in bdrv_img_create() local 7341 if (!drv->create_opts) { in bdrv_img_create() 7347 if (!proto_drv->create_opts) { in bdrv_img_create() 7354 create_opts = qemu_opts_append(create_opts, drv->create_opts); in bdrv_img_create() 7355 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); in bdrv_img_create() 7357 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); in bdrv_img_create() 7503 qemu_opts_free(create_opts); in bdrv_img_create()
|
/qemu/tests/unit/ |
H A D | test-crypto-block.c | 110 QCryptoBlockCreateOptions *create_opts; member 126 .create_opts = &qcow_create_opts, 139 .create_opts = &luks_create_opts_default, 154 .create_opts = &luks_create_opts_aes256_cbc_plain64, 169 .create_opts = &luks_create_opts_aes256_cbc_essiv, 282 blk = qcrypto_block_create(data->create_opts, NULL, in test_block()
|
/qemu/include/crypto/ |
H A D | block.h | 198 qcrypto_block_calculate_payload_offset(QCryptoBlockCreateOptions *create_opts,
|
/qemu/crypto/ |
H A D | block.c | 141 qcrypto_block_calculate_payload_offset(QCryptoBlockCreateOptions *create_opts, in qcrypto_block_calculate_payload_offset() argument 148 qcrypto_block_create(create_opts, optprefix, in qcrypto_block_calculate_payload_offset()
|
/qemu/include/block/ |
H A D | block_int-common.h | 175 QemuOptsList *create_opts; member
|