Home
last modified time | relevance | path

Searched refs:proc (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/tools/otci/otci/
Dconnectors.py75 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/
Dharness_controller.py44 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/
Dtest_psa_compliance.py92 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/
Dc_build_helper.py95 proc = subprocess.Popen(cmd,
99 cc_is_msvc = 'Microsoft (R) C/C++' in proc.communicate()[1]
/openthread-latest/tests/scripts/thread-cert/
Dthread_cert.py505 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()
Dnode.py204 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/
Dtest562 echo "$OT_COREDUMP_DIR/corefile-%e-%p-%t" | sudo tee /proc/sys/kernel/core_pattern
/openthread-latest/tests/toranj/cli/
Dcli.py205 if self._cli_process.proc.poll() is None: