/scripts/gitlint/ |
A D | zephyr_commit_rules.py | 67 flags = re.UNICODE 68 flags |= re.IGNORECASE 71 … if not re.search(r"(^)Signed-off-by: ([-'\w.]+) ([-'\w.]+) (.*)", line, flags=flags): 128 flags = re.IGNORECASE 130 if re.search(rf"^\s*{tag}:", line, flags=flags):
|
/scripts/tests/twister_blackbox/ |
A D | test_output.py | 142 c_pattern = re.compile(pattern, flags=re.MULTILINE) 172 def test_output_levels(self, capfd, out_path, flags): argument 174 args = ['--outdir', out_path, '-T', test_path, *flags] 188 if '-ll' in flags and 'DEBUG' in flags: 194 if '-vv' in flags: 202 if not any(f in flags for f in ['-v', '-vv']):
|
A D | test_report.py | 362 def test_detailed_skipped_report(self, out_path, test_path, flags, expected_testcase_counts): argument 365 flags + \
|
A D | test_footprint.py | 254 def test_show_footprint(self, caplog, out_path, flags, old_ram_multiplier, expect_delta_log): argument 292 flags + \
|
/scripts/native_simulator/common/src/ |
A D | nsi_host_trampolines.c | 44 int nsi_host_open(const char *pathname, int flags) in nsi_host_open() argument 46 return open(pathname, flags); in nsi_host_open()
|
/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/ |
A D | mcumgr.py | 27 flags: str = '' variable in MCUmgrImage 88 image_list[-1].flags = m.group(1) 96 if 'active' not in image.flags: 104 if 'confirmed' not in image.flags:
|
/scripts/coredump/coredump_parser/ |
A D | elf_parser.py | 110 flags = section['sh_flags'] 118 if (flags & SHF_ALLOC_EXEC) == SHF_ALLOC_EXEC: 122 elif (flags & SHF_WRITE_ALLOC) == SHF_WRITE_ALLOC: 128 elif (flags & SHF_ALLOC) == SHF_ALLOC:
|
A D | log_parser.py | 139 id1, id2, hdr_ver, tgt_code, ptr_size, flags, reason = struct.unpack(LOG_HDR_STRUCT, hdr) 156 "flags": flags, 163 del id1, id2, hdr_ver, tgt_code, ptr_size, flags, reason
|
/scripts/pylib/pytest-twister-harness/tests/fixtures/ |
A D | mcumgr_fixture_test.py | 75 assert image_list[0].flags == 'active confirmed' 80 assert image_list[1].flags == ''
|
/scripts/build/ |
A D | uf2conv.py | 134 flags = 0x0 136 flags |= 0x2000 139 flags, ptr + appstartaddr, 256, blockno, numblocks, familyid) 154 flags = 0x0 156 flags |= 0x2000 159 flags, self.addr, 256, blockno, numblocks, familyid)
|
A D | gen_isr_tables_parser_carrays.py | 140 for irq, flags, func, param in intlist["interrupts"]: 141 if self.__config.test_isr_direct(flags):
|
A D | llext_prepare_exptab.py | 86 self.flags = self.section['sh_flags'] 273 if (self.exptab_section.flags & SHF_LLEXT_PREPARATION_DONE) != 0:
|
A D | elf_parser.py | 45 self.flags = self._data_native_read(self.elf.ld_consts['_PM_DEVICE_STRUCT_FLAGS_OFFSET']) 49 return self.flags & (1 << self.elf.ld_consts["_PM_DEVICE_FLAG_PD"])
|
A D | gen_isr_tables.py | 226 def test_isr_direct(self, flags): argument 227 return flags & self.__ISR_FLAG_DIRECT
|
A D | gen_isr_tables_parser_local.py | 183 for irq, flags, sname in intlist["interrupts"]: 184 if self.__config.test_isr_direct(flags):
|
A D | gen_kobject_list.py | 864 flags = "0" 866 flags += " | K_OBJ_FLAG_INITIALIZED" 868 flags += " | K_OBJ_FLAG_DRIVER" 875 fp.write("\", {0}, %s, %s, { .%s = %s }\n" % (obj_type, flags,
|
/scripts/native_simulator/common/src/include/ |
A D | nsi_host_trampolines.h | 32 int nsi_host_open(const char *pathname, int flags);
|
/scripts/west_commands/zspdx/ |
A D | scanner.py | 91 e2 = re.sub(r'\(|\)|\+', "", expression, flags=re.IGNORECASE) 94 e3 = re.sub(r' AND | OR | WITH ', " ", e2, flags=re.IGNORECASE)
|
/scripts/footprint/ |
A D | size_report | 231 flags = section['sh_flags'] 232 if (flags & SHF_ALLOC_EXEC) == SHF_ALLOC_EXEC: 239 elif (flags & SHF_WRITE_ALLOC) == SHF_WRITE_ALLOC: 251 elif (flags & SHF_ALLOC) == SHF_ALLOC:
|
/scripts/dts/python-devicetree/tests/ |
A D | test_dtlib.py | 34 dts = re.sub(r'\n\n[ \t]*/\*.*?\*/\n', '\n', dts, flags=re.DOTALL)
|
/scripts/pylib/twister/twisterlib/ |
A D | runner.py | 903 flags=re.DOTALL,
|