Searched refs:asset (Results 1 – 8 of 8) sorted by relevance
/qemu/tests/functional/qemu_test/ |
H A D | asset.py | 21 def __init__(self, asset, msg, transient=False): argument 22 self.url = asset.url 206 for name, asset in vars(test.__class__).items(): 207 if name.startswith("ASSET_") and type(asset) == Asset: 208 log.info("Attempting to cache '%s'" % asset) 210 asset.fetch()
|
H A D | testcase.py | 29 from .asset import Asset 191 for name, asset in vars(self.__class__).items(): 192 if name.startswith("ASSET_") and type(asset) == Asset: 193 if not asset.available():
|
H A D | __init__.py | 9 from .asset import Asset
|
H A D | uncompress.py | 18 from .asset import Asset
|
H A D | archive.py | 16 from .asset import Asset
|
/qemu/hw/smbios/ |
H A D | smbios.c | 59 const char *manufacturer, *product, *version, *serial, *asset, *location; member 63 const char *manufacturer, *version, *serial, *asset, *sku; member 75 const char *sock_pfx, *manufacturer, *version, *serial, *asset, *part; member 109 const char *loc_pfx, *bank, *manufacturer, *serial, *asset, *part; member 635 SMBIOS_TABLE_SET_STR(2, asset_tag_number_str, type2.asset); in smbios_build_type_2_table() 653 SMBIOS_TABLE_SET_STR(3, asset_tag_number_str, type3.asset); in smbios_build_type_3_table() 707 SMBIOS_TABLE_SET_STR(4, asset_tag_number_str, type4.asset); in smbios_build_type_4_table() 896 SMBIOS_TABLE_SET_STR(17, asset_tag_number_str, type17.asset); in smbios_build_type_17_table() 1446 save_opt(&type2.asset, opts, "asset"); in smbios_entry_add() 1456 save_opt(&type3.asset, opts, "asset"); in smbios_entry_add() [all …]
|
/qemu/docs/devel/testing/ |
H A D | functional.rst | 289 class. To use it in your test, declare an asset in your test class with 299 asset like this:: 339 asset which occupies at least 1GB of size on disk when uncompressed.
|
/qemu/ |
H A D | qemu-options.hx | 2684 " [,asset=str][,location=str]\n" 2686 "-smbios type=3[,manufacturer=str][,version=str][,serial=str][,asset=str]\n" 2690 " [,asset=str][,part=str][,max-speed=%d][,current-speed=%d]\n" 2698 " [,asset=str][,part=str][,speed=%d]\n" 2713 ``-smbios type=2[,manufacturer=str][,product=str][,version=str][,serial=str][,asset=str][,location=… 2716 ``-smbios type=3[,manufacturer=str][,version=str][,serial=str][,asset=str][,sku=str]`` 2719 ``-smbios type=4[,sock_pfx=str][,manufacturer=str][,version=str][,serial=str][,asset=str][,part=str… 2764 ``-smbios type=17[,loc_pfx=str][,bank=str][,manufacturer=str][,serial=str][,asset=str][,part=str][,…
|