Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/footprint/
Dcompare_footprint44 proc = subprocess.Popen('git rev-parse --is-inside-work-tree',
86 proc = subprocess.Popen('git rev-parse %s' % commit, stdout=subprocess.PIPE,
104 proc = subprocess.Popen('git diff --quiet', stdout=subprocess.PIPE,
109 proc = subprocess.Popen('git reset %s --hard' % commit,
127 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
149 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
176 proc = subprocess.Popen('git diff --quiet', stdout=subprocess.PIPE,
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dutils.py40 def terminate_process(proc: subprocess.Popen) -> None: argument
Dbinary_adapter.py25 self._process: subprocess.Popen | None = None
48 self._process = subprocess.Popen(self.command, **self.process_kwargs)
Dhardware_adapter.py35 self._serial_pty_proc: subprocess.Popen | None = None
113 …process = subprocess.Popen(self.command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=sel…
171 self._serial_pty_proc = subprocess.Popen(
272 … with subprocess.Popen(str(script_path), stderr=subprocess.PIPE, stdout=subprocess.PIPE) as proc:
/Zephyr-latest/tests/net/socket/tls_configurations/pytest/
Dtest_app_vs_openssl.py59 openssl = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
/Zephyr-latest/scripts/
Dzephyr_module.py450 rc = subprocess.Popen(['git', 'rev-parse', '--is-inside-work-tree'],
456 popen = subprocess.Popen(['git', 'rev-parse', 'HEAD'],
466 rc = subprocess.Popen(['git', 'diff-index', '--quiet', 'HEAD',
477 popen = subprocess.Popen(['git', 'remote'],
493 popen = subprocess.Popen(['git', 'remote', 'get-url', remote],
509 popen = subprocess.Popen(['git', '-P', 'tag', '--points-at', revision],
Dget_maintainer.py568 git_process = subprocess.Popen(
/Zephyr-latest/doc/_extensions/zephyr/
Ddoxyrunner.py51 from subprocess import PIPE, STDOUT, Popen
276 p = Popen([doxygen, f_doxyfile_name], stdout=PIPE, stderr=STDOUT, encoding="utf-8")
/Zephyr-latest/scripts/west_commands/runners/
Dnrfutil.py65 with subprocess.Popen(cmd, stdout=subprocess.PIPE) as p:
Dcore.py878 def popen_ignore_int(self, cmd: list[str], **kwargs) -> subprocess.Popen:
898 return subprocess.Popen(cmd, creationflags=cflags, preexec_fn=preexec, **kwargs)
/Zephyr-latest/samples/boards/nordic/coresight_stm/pytest/
Dtest_stm.py141 proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL)
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Djobserver.py65 return subprocess.Popen(argv, **kwargs)
Dhandlers.py359 with open(stderr_log, "w+") as stderr_log_fp, subprocess.Popen(
535 with subprocess.Popen(script, stderr=subprocess.PIPE, stdout=subprocess.PIPE) as proc:
691 ser_pty_process = subprocess.Popen(
769 with subprocess.Popen(command, stderr=subprocess.PIPE, stdout=subprocess.PIPE) as proc:
1105 open(self.stderr_fn, "w") as stderr_fp, subprocess.Popen(
1398 with subprocess.Popen(command, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT,
Dharness.py214 with subprocess.Popen(command, stdout=subprocess.PIPE,
495 with subprocess.Popen(
Denvironment.py1125 p = subprocess.Popen(cmd, **kwargs)
Drunner.py556 p = subprocess.Popen(cmd, **kwargs)
716 p = subprocess.Popen(cmd, **kwargs)
/Zephyr-latest/tests/boards/nrf/coresight_stm/pytest/
Dtest_stm.py163 proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL)
/Zephyr-latest/scripts/kconfig/
Dlint.py302 process = subprocess.Popen(
Dkconfiglib.py6833 stdout, stderr = subprocess.Popen(
/Zephyr-latest/scripts/west_commands/
Dzcmake.py63 p = subprocess.Popen(cmd, **kwargs)
/Zephyr-latest/soc/intel/intel_adsp/tools/
Dremote-fw-service.py163 with subprocess.Popen(runner.get_script(), stdout=subprocess.PIPE,
/Zephyr-latest/scripts/ci/
Dcheck_compliance.py215 diff = subprocess.Popen(('git', 'diff', '--no-ext-diff', COMMIT_RANGE),
302 diff = subprocess.Popen(('git', 'diff', '-U0', '--no-color', COMMIT_RANGE, '--', file),