Home
last modified time | relevance | path

Searched refs:shell (Results 1 – 22 of 22) sorted by relevance

/openthread-latest/tools/otci/otci/
Dcommand_handlers.py84 def shell(self, cmd: str, timeout: float) -> List[str]: member in OTCommandHandler
264 output = self.shell(sh_cmd, timeout=timeout)
279 return self.shell(cmd, timeout=timeout)
281 def shell(self, cmd: str, timeout: float) -> List[str]: member in OtbrSshCommandRunner
314 output = self.shell(sh_cmd, timeout=timeout)
326 return self.shell(cmd, timeout=timeout)
328 def shell(self, cmd: str, timeout: float) -> List[str]: member in OtbrAdbCommandRunner
329 return self.__adb.shell(cmd, transport_timeout_s=timeout, read_timeout_s=timeout,
Dconnectors.py134 shell=True)
Dotci.py162 def shell(self, cmd: str, timeout: float = 10): member in OTCI
164 output = self.__otcmd.shell(cmd, timeout=timeout)
/openthread-latest/third_party/mbedtls/repo/scripts/
Dcommon.make59 ## This only works with a Unix-like shell environment (Bourne/POSIX-style shell
63 $(strip $(shell
102 PYTHON ?= $(shell if type python3 >/dev/null 2>/dev/null; then echo python3; else echo python; fi)
Dcode_size_compare.py134 cc_output = subprocess.check_output(DETECT_ARCH_CMD, shell=True).decode()
301 shell=False, universal_newlines=True)
345 pre_cmd, env=my_environment, shell=True,
350 self.make_clean, env=my_environment, shell=True,
355 self.make_cmd, env=my_environment, shell=True,
376 shell=True, universal_newlines=True
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dgenerate_server9_bad_saltlen.py72 der_bytes = subprocess.check_output(cmd, shell=True)
79 shell=True)
Drun-metatests.sh7 A PLATFORM can contain shell wildcards.
Dall.sh250 COMPONENT can be the name of a component or a shell wildcard pattern.
/openthread-latest/tests/scripts/thread-cert/
Dthread_cert.py502 def assure_run_ok(self, cmd, shell=False): argument
503 if not shell and isinstance(cmd, str):
505 proc = subprocess.run(cmd, stdout=sys.stdout, stderr=sys.stderr, shell=shell)
575 shell=True)
579 self.assure_run_ok(f'docker network rm {network_name}', shell=True)
623 self.assure_run_ok(f'{mergecap} -w {merged_pcap} {thread_pcap} {backbone_pcap}', shell=True)
Drun_cert_suite.py57 subprocess.run(cmd, shell=True, check=check, stdout=stdout)
Dnode.py95 shell=True,
116 subprocess.check_call(f"docker rm -f {self._docker_name} || true", shell=True)
155 … subprocess.check_call(f'docker exec -i {self._docker_name} ot-ctl state', shell=True)
238 …re = subprocess.run(f'docker cp {self._docker_name}:/core ./coredump_{unique_node_id}', shell=True)
241 … f'docker cp {self._docker_name}:/usr/sbin/otbr-agent ./otbr-agent_{unique_node_id}', shell=True)
244 subprocess.check_call(f"docker rm -f {self._docker_name}", shell=True)
/openthread-latest/tools/harness-sniffer/
DOT_Sniffer.py51 …iscover = subprocess.Popen('extcap_ot.bat --extcap-interfaces', stdout=subprocess.PIPE, shell=True)
77 shell=True,
/openthread-latest/third_party/mbedtls/repo/tests/
DMakefile20 GENERATED_BIGNUM_DATA_FILES := $(patsubst tests/%,%,$(shell \
27 GENERATED_ECP_DATA_FILES := $(patsubst tests/%,%,$(shell \
34 GENERATED_PSA_DATA_FILES := $(patsubst tests/%,%,$(shell \
/openthread-latest/tests/scripts/thread-cert/pktverify/
Dpcap_reader.py65 subprocess.check_call(f"{tshark_path} -v", shell=True)
/openthread-latest/tests/scripts/thread-cert/border_router/
DREADME.md7 ```shell
/openthread-latest/tools/harness-simulation/posix/otbr_sim/
Dotbr_docker.py102 shell=True,
/openthread-latest/third_party/mbedtls/repo/library/
DMakefile53 PYTHON ?= $(shell if type python3 >/dev/null 2>/dev/null; then echo python3; else echo python; fi)
59 else ifeq ($(shell uname -s),Darwin)
/openthread-latest/tests/toranj/ncp/
Dwpan.py350 self._wpantund_process = subprocess.Popen(cmd, shell=True, stderr=self._tund_log_file)
388 … result = subprocess.check_output(self._wpanctl_cmd + cmd, shell=True, stderr=subprocess.STDOUT)
609 result = subprocess.check_output(cmd, shell=True, stderr=subprocess.STDOUT)
623 result = subprocess.check_output(cmd, shell=True, stderr=subprocess.STDOUT)
/openthread-latest/third_party/mbedtls/repo/
DREADME.md107 …cross-compiling, or compiling from an MSYS shell), and `WINDOWS=1` if the build environment is a W…
245 For machines with a Unix shell and OpenSSL (and optionally GnuTLS) installed, additional test scrip…
/openthread-latest/third_party/mbedtls/repo/programs/
DMakefile4 ifeq ($(shell uname -s),Linux)
/openthread-latest/tools/otci/tests/
Dtest_otci.py77 subprocess.check_call('rm -rf tmp/', shell=True)
/openthread-latest/tools/harness-automation/autothreadharness/
Dharness_case.py922 shell=True)