Searched refs:proc (Results 1 – 8 of 8) sorted by relevance
/openthread-latest/tools/otci/otci/ |
D | connectors.py | 75 def __init__(self, proc: subprocess.Popen, nodeid: int, simulator: Simulator): 76 self.__otcli_proc = proc 114 proc = subprocess.Popen(args=[executable, str(nodeid)], 120 super().__init__(proc, nodeid, simulator) 129 proc = subprocess.Popen(args=f'spinel-cli.py -p "{executable}" -n {nodeid} 2>&1', 135 super().__init__(proc, nodeid, simulator)
|
/openthread-latest/tools/harness-automation/autothreadharness/ |
D | harness_controller.py | 44 def _try_kill(proc): argument 48 while proc.poll() is None: 49 proc.kill() 53 if proc.poll() is not None:
|
/openthread-latest/third_party/mbedtls/repo/tests/scripts/ |
D | test_psa_compliance.py | 92 proc = subprocess.Popen(['./psa-arch-tests-crypto'], 103 if proc.stdout is None: 106 for line in proc.stdout: 124 proc.wait()
|
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | c_build_helper.py | 95 proc = subprocess.Popen(cmd, 99 cc_is_msvc = 'Microsoft (R) C/C++' in proc.communicate()[1]
|
/openthread-latest/tests/scripts/thread-cert/ |
D | thread_cert.py | 505 proc = subprocess.run(cmd, stdout=sys.stdout, stderr=sys.stderr, shell=shell) 506 print(">>> %s => %d" % (cmd, proc.returncode), file=sys.stderr) 507 proc.check_returncode()
|
D | node.py | 204 self.pexpect.proc.kill() 263 proc = subprocess.Popen(['docker', 'exec', '-i', self._docker_name, 'bash', '-c', cmd], 269 with proc: 274 line = proc.stdout.readline() 282 proc.wait() 284 if proc.returncode != 0: 285 raise subprocess.CalledProcessError(proc.returncode, cmd, ''.join(lines)) 766 if (hasattr(self.pexpect, 'proc') and self.pexpect.proc.poll() is None or
|
/openthread-latest/script/ |
D | test | 562 echo "$OT_COREDUMP_DIR/corefile-%e-%p-%t" | sudo tee /proc/sys/kernel/core_pattern
|
/openthread-latest/tests/toranj/cli/ |
D | cli.py | 205 if self._cli_process.proc.poll() is None:
|