/openbmc/linux/tools/testing/selftests/powerpc/copyloops/ |
H A D | copyuser_64.S | 427 .macro exc macro 453 exc; ld r7,0(4) 459 exc; ldu r6,8(4) 467 exc; std r7,8(3) 473 exc; ld r29,8(4) 485 exc; ld r7,16(4) 504 exc; std r7,8(3) 509 exc; ld r7,0(4) 510 exc; ld r8,8(4) 513 exc; ld r10,8(4) [all …]
|
/openbmc/linux/arch/powerpc/lib/ |
H A D | copyuser_64.S | 427 .macro exc macro 453 exc; ld r7,0(4) 459 exc; ldu r6,8(4) 467 exc; std r7,8(3) 473 exc; ld r29,8(4) 485 exc; ld r7,16(4) 504 exc; std r7,8(3) 509 exc; ld r7,0(4) 510 exc; ld r8,8(4) 513 exc; ld r10,8(4) [all …]
|
/openbmc/qemu/target/alpha/ |
H A D | fpu_helper.c | 47 if (unlikely(exc)) { in soft_to_fpcr_exc() 78 if (exc) { in helper_fp_exc_raise() 79 env->fpcr |= exc; in helper_fp_exc_raise() 80 exc &= ~ignore; in helper_fp_exc_raise() 81 if (exc) { in helper_fp_exc_raise() 91 if (exc) { in helper_fp_exc_raise_s() 92 env->fpcr |= exc; in helper_fp_exc_raise_s() 101 if (!exc) { in helper_fp_exc_raise_s() 458 uint32_t exc; in do_cvttq() local 464 if (unlikely(exc)) { in do_cvttq() [all …]
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | devtool-stress.py | 118 except bb.process.ExecutionError as exc: 119 if exc.exitcode == 4: 124 f.write(str(exc)) 165 except bb.process.ExecutionError as exc: 166 if exc.exitcode == 4: 170 f.write(str(exc)) 178 except bb.process.CmdError as exc: 180 f.write(str(exc)) 185 except bb.process.CmdError as exc: 186 print('devtool reset failed: %s' % str(exc))
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | license.py | 33 def __init__(self, licensestr, exc): argument 35 self.exc = exc 39 return "error in '%s': %s" % (self.licensestr, self.exc) 110 except SyntaxError as exc: 111 raise LicenseSyntaxError(licensestr, exc) 229 except SyntaxError as exc: 230 raise LicenseSyntaxError(licensestr, exc) 254 except SyntaxError as exc: 255 raise LicenseSyntaxError(licensestr, exc)
|
H A D | types.py | 104 except re.error as exc: 106 (value, exc.args[0])) 161 except IOError as exc: 162 if exc.errno == errno.ENOENT:
|
H A D | prservice.py | 16 except Exception as exc: 17 … bb.fatal("Connecting to PR service %s:%s failed: %s" % (host_params[0], host_params[1], str(exc))) 64 except BaseException as exc: 65 bb.debug("Not valid value of %s:%s" % (v,str(exc)))
|
H A D | terminal.py | 39 except OSError as exc: 41 if exc.errno == errno.ENOENT: 285 except OSError as exc: 287 if exc.errno == errno.ENOENT: 305 except OSError as exc: 307 if exc.errno == errno.ENOENT:
|
H A D | data.py | 23 except (TypeError, ValueError) as exc: 24 bb.msg.fatal("Data", "%s: %s" % (key, str(exc)))
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | exceptions.py | 92 def to_string(exc): argument 93 if isinstance(exc, SystemExit): 94 if not isinstance(exc.code, str): 95 return 'Exited with "%d"' % exc.code 96 return str(exc)
|
/openbmc/qemu/python/scripts/ |
H A D | mkvenv.py | 381 except SystemExit as exc: 386 raise exc.__cause__ or exc.__context__ or exc 388 except subprocess.CalledProcessError as exc: 390 logger.error("cmd: %s", exc.cmd) 399 if exc.stdout: 401 lines.append(_stringify(exc.stdout)) 403 if exc.stderr: 405 lines.append(_stringify(exc.stderr)) 760 except KeyError as exc: 870 except Ouch as exc: [all …]
|
/openbmc/openbmc/poky/bitbake/lib/prserv/ |
H A D | db.py | 66 except sqlite3.OperationalError as exc: 69 raise exc 148 except sqlite3.IntegrityError as exc: 149 logger.error(str(exc)) 181 except sqlite3.IntegrityError as exc: 182 logger.error(str(exc)) 216 except sqlite3.IntegrityError as exc: 217 logger.error(str(exc)) 236 except sqlite3.IntegrityError as exc: 242 except sqlite3.IntegrityError as exc: [all …]
|
/openbmc/openbmc/poky/scripts/ |
H A D | pythondeps | 122 except TypeError as exc: 123 raise DependError(path, exc) 124 except SyntaxError as exc: 125 raise DependError(path, exc) 182 except (OSError, IOError) as exc: 183 raise DependError(path, exc) 240 except PythonDepError as exc: 241 logger.error(str(exc))
|
/openbmc/phosphor-webui/app/server-control/directives/ |
H A D | kvm-console.js | 51 } catch (exc) { 52 $log.error(exc); 55 'Unable to create RFB client -- ' + exc);
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 297 | 76 except subprocess.CalledProcessError as exc: 78 if exc.output: 79 print(exc.output)
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | util.py | 176 def exception_summary(exc: BaseException) -> str: 183 name = type(exc).__qualname__ 184 smod = type(exc).__module__ 188 error = str(exc)
|
/openbmc/qemu/tests/tcg/multiarch/gdbstub/ |
H A D | test-proc-mappings.py | 13 except gdb.error as exc: 14 exc_str = str(exc)
|
H A D | catch-syscalls.py | 23 except gdb.error as exc: 24 exc_str = str(exc)
|
/openbmc/openbmc/poky/meta/lib/oeqa/sdk/utils/ |
H A D | sdkbuildproject.py | 50 except subprocess.CalledProcessError as exc: 51 print(exc.output.decode('utf-8')) 52 return exc.returncode
|
/openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
H A D | gitver.bbclass | 38 except Exception as exc: 39 raise bb.parse.SkipRecipe(str(exc)) 53 except Exception as exc: 54 bb.fatal(str(exc))
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | git-make-shallow | 41 except OSError as exc: 42 if exc.errno != errno.ENOENT: 168 except OSError as exc: 169 if exc.errno != errno.ENOENT:
|
H A D | bitbake | 22 except RuntimeError as exc: 23 sys.exit(str(exc))
|
H A D | bitbake-selftest | 19 except RuntimeError as exc: 20 sys.exit(str(exc))
|
/openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/ |
H A D | ConfHandler.py | 92 except (IOError, OSError) as exc: 93 if exc.errno == errno.ENOENT: 99 … raise ParseError("Could not %s file %s: %s" % (error_out, fn, exc.strerror), parentfn, lineno) 101 raise ParseError("Error parsing %s: %s" % (fn, exc.strerror), parentfn, lineno)
|
/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | image-fleecing | 192 except CalledProcessError as exc: 194 log(exc.stdout) 238 except CalledProcessError as exc: 240 log(exc.stdout)
|