| /openbmc/qemu/scripts/modules/ |
| H A D | module_block.py | 25 def add_module(fheader, library, format_name, protocol_name): argument 28 if format_name != "": 29 lines.append('.format_name = "' + format_name + '",') 45 format_name = get_string_struct(line) 49 add_module(fheader, library, format_name, protocol_name) 53 format_name = ""
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-bdrv-graph-mod.c | 28 .format_name = "pass-through", 45 .format_name = "no-perm", 61 .format_name = "exclusive-writer", 298 .format_name = "write-to-selected",
|
| H A D | test-bdrv-drain.c | 107 .format_name = "test", 978 .format_name = "test_top_driver", 1871 .format_name = "replace_test",
|
| /openbmc/qemu/block/ |
| H A D | null.c | 265 bs->drv->format_name); in null_refresh_filename() 282 .format_name = "null-co", 303 .format_name = "null-aio",
|
| H A D | snapshot-access.c | 115 .format_name = "snapshot-access",
|
| H A D | blkio.c | 1115 .format_name = "io_uring", 1122 .format_name = "nvme-io_uring", 1128 .format_name = "virtio-blk-vfio-pci", 1134 .format_name = "virtio-blk-vhost-user", 1140 .format_name = "virtio-blk-vhost-vdpa",
|
| H A D | filter-compress.c | 136 .format_name = "compress",
|
| H A D | blkreplay.c | 143 .format_name = "blkreplay",
|
| H A D | curl.c | 1038 .format_name = "http", 1057 .format_name = "https", 1076 .format_name = "ftp", 1095 .format_name = "ftps",
|
| H A D | copy-on-read.c | 252 .format_name = "copy-on-read",
|
| H A D | snapshot.c | 380 drv->format_name, bdrv_get_device_name(bs)); in bdrv_snapshot_delete() 456 drv->format_name, bdrv_get_device_name(bs)); in bdrv_snapshot_load_tmp()
|
| H A D | throttle.c | 242 .format_name = "throttle",
|
| H A D | bochs.c | 303 .format_name = "bochs",
|
| H A D | cloop.c | 299 .format_name = "cloop",
|
| H A D | blkverify.c | 319 .format_name = "blkverify",
|
| H A D | stream.c | 101 base_fmt = unfiltered_base->drv->format_name; in stream_prepare()
|
| H A D | gluster.c | 1546 .format_name = "gluster", 1575 .format_name = "gluster", 1604 .format_name = "gluster",
|
| H A D | file-win32.c | 744 .format_name = "file", 917 .format_name = "host_device",
|
| H A D | preallocate.c | 598 .format_name = "preallocate",
|
| H A D | copy-before-write.c | 525 .format_name = "copy-before-write",
|
| H A D | commit.c | 296 .format_name = "commit_top",
|
| /openbmc/qemu/ |
| H A D | block.c | 406 assert(bdrv->format_name); in bdrv_register() 442 static BlockDriver *bdrv_do_find_format(const char *format_name) in bdrv_do_find_format() argument 448 if (!strcmp(drv1->format_name, format_name)) { in bdrv_do_find_format() 456 BlockDriver *bdrv_find_format(const char *format_name) in bdrv_find_format() argument 463 drv1 = bdrv_do_find_format(format_name); in bdrv_find_format() 470 if (!strcmp(block_driver_modules[i].format_name, format_name)) { in bdrv_find_format() 475 return bdrv_do_find_format(format_name); in bdrv_find_format() 485 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only) in bdrv_format_is_whitelisted() argument 502 if (!strcmp(format_name, *p)) { in bdrv_format_is_whitelisted() 508 if (!strcmp(format_name, *p)) { in bdrv_format_is_whitelisted() [all …]
|
| H A D | blockdev.c | 1263 bs->drv->format_name, device); in internal_snapshot_action() 1489 state->old_bs->drv->format_name, in external_snapshot_action() 1699 format = bs->drv->format_name; in drive_backup_action() 1753 explicit_backing->drv->format_name, NULL, in drive_backup_action() 3008 ? NULL : bs->drv->format_name); in qmp_drive_mirror() 3069 explicit_backing->drv->format_name, in qmp_drive_mirror() 3396 image_bs->drv ? image_bs->drv->format_name : "", in qmp_change_backing_file()
|
| H A D | qemu-img.c | 251 proto_drv->format_name); in print_block_option_help() 2635 drv->format_name); in img_convert() 2642 proto_drv->format_name); in img_convert() 2797 out_bs->drv->format_name); in img_convert() 4551 fmt = bs->drv->format_name; in img_amend() 5500 drv->format_name); in img_dd() 5506 proto_drv->format_name); in img_dd() 5792 drv->format_name); in img_measure()
|
| /openbmc/qemu/include/block/ |
| H A D | block-global-state.h | 58 BlockDriver *bdrv_find_format(const char *format_name);
|