Searched refs:Exception (Results 1 – 25 of 53) sorted by relevance
123
/qemu/tests/tcg/i386/ |
H A D | test-avx.py | 74 raise Exception("bad reg_w %d" % w) 90 raise Exception() 98 raise Exception("Bad /m width: %s" % w) 112 raise Exception("Bad mem width: %s" % mw) 128 raise Exception("Bad vsib width: %s" % w) 143 raise Exception("Unknown immediate") 158 raise Exception("Bad r/w width: %s" % w) 160 raise Exception("Bad r/w width: %s" % w) 175 raise Exception("Bad mem width: %s" % w) 180 class SkipInstruction(Exception): [all …]
|
H A D | test-mmx.py | 41 raise Exception("bad reg_w %d" % w) 53 raise Exception() 62 raise Exception("Bad /m width: %s" % w) 82 raise Exception("Unknown immediate") 97 raise Exception("Bad r/w width: %s" % w) 99 raise Exception("Bad r/w width: %s" % w) 114 raise Exception("Bad mem width: %s" % w) 119 class SkipInstruction(Exception): 127 raise Exception("Expected /m: %s", arg) 137 raise Exception("Expected /m: %s", arg) [all …]
|
/qemu/scripts/ |
H A D | analyze-migration.py | 62 raise Exception("Unexpected end of %s at 0x%x" % (self.filename, self.file.tell())) 96 raise Exception("No Debug Migration device found") 122 raise Exception("Unknown RAM version %d" % version_id) 208 raise Exception("XBZRLE RAM compression is not supported yet") 210 raise Exception("RAM hooks don't make sense with files") 219 raise Exception("Unknown RAM flags: %x" % flags) 232 raise Exception("Unknown HTAB version %d" % version_id) 272 raise Exception("Unknown storage_attributes version %d" % version_id) 294 raise Exception("Unknown flags %x", flags) 297 raise Exception("Error in migration stream") [all …]
|
H A D | replay-dump.py | 104 raise(Exception("unknown event")) 125 raise(Exception("unhandled event")) 436 except Exception as inst:
|
H A D | device-crash-test | 257 raise Exception("this should never happen") 329 except Exception: 371 except Exception as this_exc:
|
/qemu/tests/qemu-iotests/ |
H A D | fat16.py | 317 raise Exception("Unexpected: FREE cluster") 319 raise Exception("Unexpected: RESERVED cluster") 323 raise Exception("Invalid FAT entry") 335 raise Exception("No free clusters") 353 raise Exception("No free clusters") 452 raise Exception("No free directory entries") 492 raise Exception( 507 raise Exception(f"{entry.whole_name()} is a directory") 526 raise Exception("entry is None") 528 raise Exception(f"{entry.whole_name()} is a directory") [all …]
|
H A D | 256 | 98 raise Exception(ret['error']['desc']) 120 raise Exception(ret['error']['desc'])
|
H A D | 149 | 78 raise Exception("No password found") 126 raise Exception(msg) 192 raise Exception(msg) 219 except Exception as e:
|
/qemu/tests/functional/qemu_test/ |
H A D | archive.py | 87 raise Exception("Unable to filter cpio extraction") 91 raise Exception("Unable to use file-like object with deb archives") 94 raise Exception(f"Unknown archive format {format}") 106 raise Exception(f"Unable to guess archive format for {archive}") 117 raise Exception(f"Unknown archive format for {archive}")
|
H A D | uncompress.py | 53 raise Exception( 85 raise Exception(f"Unknown compression format {format}") 97 raise Exception(f"Unable to guess compression cformat for {compressed}") 107 raise Exception(f"Unknown compression format for {compressed}")
|
H A D | asset.py | 20 class AssetError(Exception): 170 except Exception as e: 183 except Exception as e:
|
H A D | config.py | 35 raise Exception("Cannot identify build dir, set QEMU_BUILD_ROOT")
|
/qemu/scripts/ci/ |
H A D | gitlab-pipeline-status | 26 class CommunicationFailure(Exception): 30 class NoPipelineFound(Exception): 177 except Exception as error: # pylint: disable=W0703
|
/qemu/tests/lcitool/ |
H A D | refresh | 39 except Exception as ex: 49 raise Exception("Failed to generate %s: %s" % (filename, lcitool.stderr)) 265 except Exception as ex:
|
/qemu/target/hexagon/ |
H A D | gen_decodetree.py | 133 raise Exception(f"{tag} missing register field!") 135 raise Exception(f"{tag} has split register field!") 138 raise Exception(f"{tag} has incorrect register field width!")
|
/qemu/tests/vm/ |
H A D | basevm.py | 182 raise Exception("ssh key file not found.") 185 raise Exception("ssh pub key file not found.") 194 raise Exception("self.login_prompt not defined") 250 raise Exception("SSH command failed: %s" % cmd) 319 raise Exception("Cannot find ssh port from 'info usernet':\n%s" % \ 453 raise Exception("Timeout while waiting for guest ssh") 549 raise Exception("config file {} does not exist".format(config_file)) 568 raise Exception("config file {} is not valid"\ 669 except Exception as e:
|
/qemu/scripts/qapi/ |
H A D | main.py | 38 except Exception as ex: 49 except Exception as ex:
|
H A D | error.py | 25 class QAPIError(Exception):
|
/qemu/scripts/tracetool/format/ |
H A D | log_stap.py | 32 raise Exception("Unhandled macro '%s'" % macro) 47 raise Exception("Unexpected escape outside string literal")
|
/qemu/python/qemu/qmp/ |
H A D | error.py | 34 class QMPError(Exception):
|
H A D | protocol.py | 82 def __init__(self, error_message: str, exc: Exception): argument 87 self.exc: Exception = exc 455 if isinstance(err, Exception): 835 except Exception: # pylint: disable=broad-except
|
H A D | qmp_tui.py | 211 except Exception as err: 274 except Exception as err: 399 except Exception as err:
|
/qemu/tests/migration-stress/guestperf/ |
H A D | engine.py | 198 raise Exception("unsupported multifd compression " 225 raise Exception("dirty ring size must be configured when " 459 raise Exception("Running use unix migration transport for non-local host") 520 except Exception as e:
|
/qemu/scripts/simplebench/ |
H A D | img_bench_templater.py | 42 except Exception:
|
/qemu/python/qemu/machine/ |
H A D | machine.py | 56 class QEMUMachineError(Exception): 398 except Exception as err: # pylint: disable=broad-except 460 if isinstance(exc, Exception): 612 except Exception as exc:
|
123