Searched refs:SectionKind (Results 1 – 1 of 1) sorted by relevance
| /Zephyr-latest/scripts/build/ |
| D | gen_relocate_app.py | 64 class SectionKind(Enum): class 251 section_kind = SectionKind.for_section_named(section.name) 317 for kind in SectionKind: 324 out = set(SectionKind) 341 kind: SectionKind, argument 360 if region_is_default_ram(memory_type) and kind in (SectionKind.DATA, SectionKind.BSS): 363 if not region_is_default_ram(memory_type) and kind is SectionKind.RODATA: 371 … if region_is_default_ram(memory_type) and kind in (SectionKind.TEXT, SectionKind.LITERAL): 399 …gen_string += string_create_helper(SectionKind.LITERAL, memory_type, full_list_of_sections, 1, is_… 400 …gen_string += string_create_helper(SectionKind.TEXT, memory_type, full_list_of_sections, 1, is_cop… [all …]
|