Searched refs:split (Results 51 – 75 of 224) sorted by relevance
123456789
/Zephyr-latest/scripts/west_commands/runners/ |
D | linkserver.py | 55 for opts in [shlex.split(opt) for opt in tool_opt]: 115 self.linkserver_version = str(ls_output.split()[1].decode()).lower()
|
D | ezflashcli.py | 26 for opts in [shlex.split(opt) for opt in tool_opt]:
|
D | spi_burn.py | 134 gdb_ex = re.split("(-ex) ", self.gdb_ex)[1::]
|
D | nxp_s32dbg.py | 60 self.tool_opt.extend(shlex.split(opt)) 143 outb = subprocess.check_output(shlex.split(cmd), stderr=subprocess.DEVNULL)
|
D | dfu.py | 129 if self.dfuse and 'leave' in dcfg.options.split(':'):
|
D | silabs_commander.py | 36 for opts in [shlex.split(opt) for opt in tool_opt]:
|
/Zephyr-latest/scripts/ci/ |
D | guideline_check.py | 29 for line in contents.split("\n"):
|
D | twister_report_analyzer.py | 179 error_key = ts_reason.split(reason, 1)[-1].lstrip(' -') 187 error_key = ts_reason.split(reason, 1)[-1].lstrip(' -') 238 return "ld.bfd:" + lines[i - 1].split("ld.bfd:", 1)[-1]
|
D | check_compliance.py | 70 f'--max-count={-1 if "." in refspec else 1}', refspec).split() 273 _, vnd = line.strip().split(":", 2) 288 vendor, _ = line.split("\t", 2) 454 lines = content.strip().split('\n') 458 _, root_path = line.split(":", 1) 725 path, lineno, line = grep_line.split("\0") 742 path, lineno, line = grep_line.split("\0") 955 path, lineno, line = grep_line.split("\0") 1450 ).split('\n', 2) 1494 added, deleted, fname = stat.split("\t")
|
/Zephyr-latest/scripts/coccinelle/ |
D | same_identifier.cocci | 75 if v == t.split(" ")[-1]:
|
/Zephyr-latest/dts/riscv/starfive/ |
D | starfive_jh7100_beagle_v.dtsi | 40 tlb-split; 69 tlb-split;
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | doxybridge.py | 109 split = found_id.split("_")
|
D | gh_utils.py | 216 date, sha1 = date_and_sha1.split(" ", 1)
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/ |
D | mcumgr.py | 51 return check_output(shlex.split(command), text=True)
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/ |
D | twister_harness_config.py | 62 … west_flash_extra_args = [w.strip() for w in config.option.west_flash_extra_args.split(',')]
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | cmakecache.py | 92 value = value.split(';')
|
/Zephyr-latest/scripts/west_commands/zspdx/ |
D | scanner.py | 99 e4 = e3.split(" ")
|
/Zephyr-latest/scripts/west_commands/ |
D | sdk.py | 275 tuples = [(re.split(r"\s+", t)) for t in sha256_list.splitlines()] 526 for ent in line.split(","): 527 kv = ent.split("=")
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_environment.py | 188 assert expected_error in ' '.join(caplog.text.split()) 225 ' pytest-twister-harness plugin.' in ' '.join(caplog.text.split())
|
/Zephyr-latest/scripts/build/ |
D | gen_device_deps.py | 124 edtser = os.path.join(os.path.split(args.kernel)[0], "edt.pickle")
|
D | parse_syscalls.py | 74 for one_file in contents.split(";"):
|
/Zephyr-latest/scripts/footprint/ |
D | upload_data.py | 110 file_data = file.split("/")
|
/Zephyr-latest/scripts/release/ |
D | bug_bash.py | 138 prid = int(ipr.html_url.split('/')[-1])
|
/Zephyr-latest/scripts/kconfig/ |
D | kconfigfunctions.py | 944 return "y" if shield in list.split(";") else "n" 988 intarray = map(int, args if len(args) > 1 else args[0].split(",")) 1014 intarray = map(int, args if len(args) > 1 else args[0].split(","))
|
/Zephyr-latest/soc/nuvoton/npcx/common/ecst/ |
D | ecst_args.py | 203 args = parser.parse_known_args(arg_list.split())
|
123456789