Searched refs:hdc (Results 1 – 6 of 6) sorted by relevance
/qemu/hw/core/ |
H A D | hotplug.c | 20 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_pre_plug() local 22 if (hdc->pre_plug) { in hotplug_handler_pre_plug() 23 hdc->pre_plug(plug_handler, plugged_dev, errp); in hotplug_handler_pre_plug() 31 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_plug() local 33 if (hdc->plug) { in hotplug_handler_plug() 34 hdc->plug(plug_handler, plugged_dev, errp); in hotplug_handler_plug() 42 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_unplug_request() local 44 if (hdc->unplug_request) { in hotplug_handler_unplug_request() 45 hdc->unplug_request(plug_handler, plugged_dev, errp); in hotplug_handler_unplug_request() 53 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_unplug() local [all …]
|
/qemu/hw/s390x/ |
H A D | virtio-ccw-md.c | 76 HotplugHandlerClass *hdc; in virtio_ccw_md_unplug_request() local 101 hdc = HOTPLUG_HANDLER_GET_CLASS(bus_handler); in virtio_ccw_md_unplug_request() 102 if (hdc->unplug_request) { in virtio_ccw_md_unplug_request()
|
/qemu/hw/virtio/ |
H A D | virtio-md-pci.c | 75 HotplugHandlerClass *hdc; in virtio_md_pci_unplug_request() local 99 hdc = HOTPLUG_HANDLER_GET_CLASS(bus_handler); in virtio_md_pci_unplug_request() 100 if (hdc->unplug_request) { in virtio_md_pci_unplug_request()
|
/qemu/include/hw/ |
H A D | qdev-core.h | 1077 HotplugHandlerClass *hdc; in qbus_is_hotpluggable() local 1079 hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in qbus_is_hotpluggable() 1080 if (hdc->is_hotpluggable_bus) { in qbus_is_hotpluggable() 1081 ret = hdc->is_hotpluggable_bus(plug_handler, bus); in qbus_is_hotpluggable()
|
/qemu/system/ |
H A D | qdev-monitor.c | 894 HotplugHandlerClass *hdc; in qdev_unplug() local 915 hdc = HOTPLUG_HANDLER_GET_CLASS(hotplug_ctrl); in qdev_unplug() 916 if (hdc->unplug_request) { in qdev_unplug()
|
/qemu/ |
H A D | qemu-options.hx | 1297 DEF("hdc", HAS_ARG, QEMU_OPTION_hdc, 1298 "-hdc/-hdd file use 'file' as hard disk 2/3 image\n", QEMU_ARCH_ALL) 1305 ``-hdc file`` 1321 (which is IDE1 master on x86, so you cannot use ``-hdc`` and ``-cdrom`` 1715 Instead of ``-hda``, ``-hdb``, ``-hdc``, ``-hdd``, you can use:
|