Searched refs:Popen (Results 1 – 22 of 22) sorted by relevance
/Zephyr-latest/scripts/footprint/ |
D | compare_footprint | 44 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/ |
D | utils.py | 40 def terminate_process(proc: subprocess.Popen) -> None: argument
|
D | binary_adapter.py | 25 self._process: subprocess.Popen | None = None 48 self._process = subprocess.Popen(self.command, **self.process_kwargs)
|
D | hardware_adapter.py | 35 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/ |
D | test_app_vs_openssl.py | 59 openssl = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
/Zephyr-latest/scripts/ |
D | zephyr_module.py | 450 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],
|
D | get_maintainer.py | 568 git_process = subprocess.Popen(
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | doxyrunner.py | 51 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/ |
D | nrfutil.py | 65 with subprocess.Popen(cmd, stdout=subprocess.PIPE) as p:
|
D | core.py | 878 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/ |
D | test_stm.py | 141 proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL)
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | jobserver.py | 65 return subprocess.Popen(argv, **kwargs)
|
D | handlers.py | 359 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,
|
D | harness.py | 214 with subprocess.Popen(command, stdout=subprocess.PIPE, 495 with subprocess.Popen(
|
D | environment.py | 1125 p = subprocess.Popen(cmd, **kwargs)
|
D | runner.py | 556 p = subprocess.Popen(cmd, **kwargs) 716 p = subprocess.Popen(cmd, **kwargs)
|
/Zephyr-latest/tests/boards/nrf/coresight_stm/pytest/ |
D | test_stm.py | 163 proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL)
|
/Zephyr-latest/scripts/kconfig/ |
D | lint.py | 302 process = subprocess.Popen(
|
D | kconfiglib.py | 6833 stdout, stderr = subprocess.Popen(
|
/Zephyr-latest/scripts/west_commands/ |
D | zcmake.py | 63 p = subprocess.Popen(cmd, **kwargs)
|
/Zephyr-latest/soc/intel/intel_adsp/tools/ |
D | remote-fw-service.py | 163 with subprocess.Popen(runner.get_script(), stdout=subprocess.PIPE,
|
/Zephyr-latest/scripts/ci/ |
D | check_compliance.py | 215 diff = subprocess.Popen(('git', 'diff', '--no-ext-diff', COMMIT_RANGE), 302 diff = subprocess.Popen(('git', 'diff', '-U0', '--no-color', COMMIT_RANGE, '--', file),
|