| /OK3568_Linux_fs/yocto/poky/bitbake/contrib/ |
| H A D | bbparse-torture.py | 59 if r.returncode != 0: 60 print("Calibration run exited with %d" % r.returncode) 82 if proc.returncode == 0: 85 print("Exited with %d" % proc.returncode)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ipk/ |
| H A D | __init__.py | 83 if p.returncode or cmd_stderr: 85 "returned %d and stderr:\n%s" % (cmd, p.returncode, cmd_stderr)) 106 if proc.returncode: 108 "returned %d:\n%s" % (cmd, proc.returncode, proc.stderr)) 144 … "returned %d:\n%s" % (pkg_path, ' '.join(cmd), e.returncode, e.output.decode("utf-8"))) 338 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8"))) 376 (cmd, e.returncode, e.output.decode("utf-8"))) 395 "returned %d:\n%s" % (e.cmd, e.returncode, e.output.decode("utf-8"))) 442 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8"))) 449 if proc.returncode: [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/ |
| H A D | 0002-run_program-support-timeout.patch | 43 + program_log.debug("Return code: %d", proc.returncode) 44 + return (proc.returncode, proc.stdout.read()) 78 - program_log.debug("Return code: %d", proc.returncode) 80 - return (proc.returncode, out)
|
| H A D | 0003-support-infinit-timeout.patch | 35 program_log.debug("Return code: %d", proc.returncode) 36 return (proc.returncode, proc.stdout.read())
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/compress/ |
| H A D | _pipecompress.py | 137 returncode = self.p.wait() 138 if returncode: 139 raise CompressionError("Process died with %d" % returncode)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/bldcollector/ |
| H A D | views.py | 42 if importer.returncode == 0: 44 …return HttpResponse("== Retval %d\n== STDOUT\n%s\n\n== STDERR\n%s" % (importer.returncode, out, er…
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/ |
| H A D | __init__.py | 108 "returned %d:\n%s" % (' '.join(cmd), e.returncode, e.output.decode("utf-8"))) 130 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8"))) 163 … "returned %d:\n%s" % (pkg_path, ' '.join(cmd), e.returncode, e.output.decode("utf-8"))) 273 (control_script.name, pkg_name, e.returncode, 288 "returned %d:\n%s" % (e.cmd, e.returncode, e.output.decode("utf-8"))) 308 (cmd, e.returncode, e.output.decode("utf-8"))) 348 "returned %d:\n%s" % (e.cmd, e.returncode, e.output.decode("utf-8"))) 483 "returned %d:\n%s" % (cmd, e.returncode, e.output.decode("utf-8")))
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | gpg_sign.py | 94 if job.returncode: 95 bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8"))) 126 ret = False if status.returncode else True
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | process.py | 185 if pipe.returncode != 0: 188 raise ExecutionError(cmd, pipe.returncode, None, None) 189 raise ExecutionError(cmd, pipe.returncode, stdout, stderr)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/rpm/ |
| H A D | __init__.py | 139 … "returned %d:\n%s" % (' '.join(cmd), e.returncode, e.output.decode("utf-8"))) 236 … "'%s' returned %d:\n%s" % (' '.join([cmd] + args + pkgs), e.returncode, e.output.decode("utf-8"))) 332 … "'%s' returned %d:\n%s" % (' '.join(cmd), e.returncode, e.output.decode("utf-8"))) 335 "'%s' returned %d:" % (' '.join(cmd), e.returncode)) 366 … "'%s' returned %d:\n%s" % (' '.join([cmd] + args), e.returncode, e.output.decode("utf-8"))) 410 "returned %d:\n%s" % (pkg_path, cmd, e.returncode, e.output.decode("utf-8")))
|
| /OK3568_Linux_fs/kernel/tools/usb/usbip/src/ |
| H A D | usbip_network.h | 89 int returncode; member 111 int returncode; member
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-prctl/ |
| H A D | 0001-support-cross-complication.patch | 44 -if sp.returncode: 50 -if sp.returncode:
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/exec/ |
| H A D | binfmt_script | 79 if proc.returncode == 0 and b'Executed interpreter' in stdout: 89 % (test_num, name, proc.returncode))
|
| /OK3568_Linux_fs/kernel/Documentation/sphinx/ |
| H A D | kernel_abi.py | 130 if proc.returncode != 0: 133 % (cmd, proc.returncode)
|
| H A D | kerneldoc.py | 130 if p.returncode != 0: 134 … 'kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/ |
| H A D | tdc.py | 201 if proc.returncode != 0 and len(serr) > 0: 207 proc.returncode = 255 234 if proc and (proc.returncode not in exit_codes): 240 print("returncode {}; expected {}".format(proc.returncode, 279 exit_code = p.returncode
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ |
| H A D | __init__.py | 244 bb.note("Exit code %d. Output:\n%s" % (e.returncode, e.output.decode("utf-8"))) 339 if e.returncode != 1: 342 (' '.join(cmd), e.returncode, e.output.decode("utf-8"))) 403 (' '.join(cmd), e.returncode, e.output.decode("utf-8")))
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | subprocesstweak.py | 14 s = "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode)
|
| H A D | qemurunner.py | 134 if self.runqemu.returncode: 135 self.logger.error('runqemu exited with code %d' % self.runqemu.returncode) 279 if self.runqemu.returncode: 281 self.logger.warning('runqemu exited with code %d' % self.runqemu.returncode) 291 if self.runqemu.returncode: 292 self.logger.warning('runqemu exited with code %d' % self.runqemu.returncode)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-gnome/epiphany/files/ |
| H A D | distributor.patch | 10 @@ -15,6 +15,7 @@ if r.returncode() == 0
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/commands/ |
| H A D | test_runbuilds.py | 75 self.assertNotEqual(process.returncode, 1,
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/ |
| H A D | ssh.py | 278 if process.returncode == None: 316 return (process.returncode, output.rstrip())
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | chrpath.bbclass | 54 … bb.fatal("chrpath command failed with exit code %d:\n%s\n%s" % (e.returncode, e.stdout, e.stderr)) 62 if p.returncode != 0:
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/plugin-lib/ |
| H A D | buildebpfPlugin.py | 60 if proc.returncode != 0 and len(serr) > 0:
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-core/systemd/systemd/ |
| H A D | 0001-basic-Allow-unknown-filesystems.patch | 20 if r.returncode() != 0
|