Home
last modified time | relevance | path

Searched refs:check_output (Results 1 – 23 of 23) sorted by relevance

/Zephyr-latest/tests/misc/llext-edk/pytest/
Dtest_edk.py10 from subprocess import check_output
35 output = check_output(command, text=True)
48 output = check_output(command, text=True, cwd=tempdir)
72 output = check_output(command, text=True, cwd=tempdir_extension, env=env)
77 output = check_output(command, text=True, cwd=tempdir_extension, env=env)
98 output = check_output(command, text=True)
/Zephyr-latest/tests/boot/with_mcumgr/pytest/
Dwest_sign_wrapper.py9 from subprocess import check_output
44 output = check_output(command, text=True, timeout=timeout)
/Zephyr-latest/scripts/support/
Dquartus-flash.py95 subprocess.check_output(cmd)
114 subprocess.check_output(cmd)
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dmcumgr.py11 from subprocess import check_output, getstatusoutput
51 return check_output(shlex.split(command), text=True)
/Zephyr-latest/scripts/footprint/
Dtrack.py53 … subprocess.check_output(cmd, stderr=subprocess.STDOUT, timeout=120, universal_newlines=True)
/Zephyr-latest/scripts/west_commands/runners/
Dteensy.py60 self.check_output(cmd)
Dbossac.py71 out = self.check_output([self.bossac, '--help']).decode()
222 ioreg_out = self.check_output(['ioreg', '-r', '-c', 'IOSerialBSDClient',
Dminichlink.py95 self.check_output(cmd)
Dcore.py136 out = subprocess.check_output(cmd).split(b'\r\n')
143 out = subprocess.check_output(cmd).splitlines()[1:]
149 out = subprocess.check_output(cmd).split(b'\n')
866 def check_output(self, cmd: list[str], **kwargs) -> bytes: member in ZephyrBinaryRunner
876 return subprocess.check_output(cmd, **kwargs)
Dnrfjprog.py51 snrs = self.check_output(['nrfjprog', '--ids'])
Ddfu.py106 output = self.check_output(cmd)
Dlinkserver.py114 ls_output=self.check_output(linkserver_version_cmd)
Dnxp_s32dbg.py143 outb = subprocess.check_output(shlex.split(cmd), stderr=subprocess.DEVNULL)
Dintel_cyclonev.py197 out = self.check_output([self.openocd_cmd[0], '--version'],
Dopenocd.py222 out = self.check_output([self.openocd_cmd[0], '--version'],
/Zephyr-latest/doc/_extensions/zephyr/
Dgh_utils.py191 subprocess.check_output(
200 subprocess.check_output(
Dlink-roles.py34 output = subprocess.check_output(
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dsize_calc.py210 is_xip_output = subprocess.check_output(
225 objdump_output = subprocess.check_output(
/Zephyr-latest/scripts/west_commands/
Dzcmake.py277 version_out = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
/Zephyr-latest/scripts/build/
Duf2conv.py211 r = subprocess.check_output(["wmic", "PATH", "Win32_LogicalDisk",
/Zephyr-latest/doc/develop/west/
Dwest-apis.rst157 .. method:: check_output(args, **kwargs)
159 Runs ``subprocess.check_output(args, **kwargs)`` after
Drelease-notes.rst64 ``check_output()`` now take any kwargs that can be passed on
/Zephyr-latest/soc/intel/intel_adsp/tools/
Dcavstool.py390 return subprocess.check_output(cmd, shell=True).decode().rstrip()