/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", 970 .format_name = "test_top_driver", 1857 .format_name = "replace_test",
|
/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 | 1243 bs->drv->format_name, device); in internal_snapshot_action() 1450 state->old_bs->drv->format_name, in external_snapshot_action() 1632 format = bs->drv->format_name; in drive_backup_action() 1686 explicit_backing->drv->format_name, NULL, in drive_backup_action() 2937 ? NULL : bs->drv->format_name); in qmp_drive_mirror() 2998 explicit_backing->drv->format_name, in qmp_drive_mirror() 3327 image_bs->drv ? image_bs->drv->format_name : "", in qmp_change_backing_file()
|
H A D | qemu-img.c | 334 proto_drv->format_name); in print_block_option_help() 2555 drv->format_name); in img_convert() 2562 proto_drv->format_name); in img_convert() 2717 out_bs->drv->format_name); in img_convert() 4349 fmt = bs->drv->format_name; in img_amend() 5218 drv->format_name); in img_dd() 5224 proto_drv->format_name); in img_dd() 5487 drv->format_name); in img_measure()
|
/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 | 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 | snapshot-access.c | 115 .format_name = "snapshot-access",
|
H A D | filter-compress.c | 136 .format_name = "compress",
|
H A D | curl.c | 1024 .format_name = "http", 1043 .format_name = "https", 1062 .format_name = "ftp", 1081 .format_name = "ftps",
|
H A D | blkreplay.c | 143 .format_name = "blkreplay",
|
H A D | snapshot.c | 381 drv->format_name, bdrv_get_device_name(bs)); in bdrv_snapshot_delete() 458 drv->format_name, bdrv_get_device_name(bs)); in bdrv_snapshot_load_tmp()
|
H A D | copy-on-read.c | 252 .format_name = "copy-on-read",
|
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 | gluster.c | 1550 .format_name = "gluster", 1579 .format_name = "gluster", 1608 .format_name = "gluster",
|
H A D | stream.c | 103 base_fmt = unfiltered_base->drv->format_name; in stream_prepare()
|
H A D | file-win32.c | 744 .format_name = "file", 917 .format_name = "host_device",
|
H A D | commit.c | 246 .format_name = "commit_top",
|
H A D | preallocate.c | 598 .format_name = "preallocate",
|
/openbmc/linux/drivers/gpu/drm/tiny/ |
H A D | simpledrm.c | 64 simplefb_get_validated_format(struct drm_device *dev, const char *format_name) in simplefb_get_validated_format() argument 71 if (!format_name) { in simplefb_get_validated_format() 77 if (!strcmp(format_name, fmt->name)) { in simplefb_get_validated_format() 87 format_name); in simplefb_get_validated_format()
|
/openbmc/qemu/include/block/ |
H A D | block-global-state.h | 58 BlockDriver *bdrv_find_format(const char *format_name);
|