Home
last modified time | relevance | path

Searched refs:areas (Results 1 – 25 of 52) sorted by relevance

123

/Zephyr-Core-3.6.0/tests/subsys/fs/fcb/src/
Dfcb_test_last_of_n.c16 struct fcb_entry areas[ENTRIES]; in ZTEST() local
43 areas[i] = loc; in ZTEST()
49 zassert_true(areas[4].fe_sector == loc.fe_sector && in ZTEST()
50 areas[4].fe_data_off == loc.fe_data_off && in ZTEST()
51 areas[4].fe_data_len == loc.fe_data_len, in ZTEST()
57 zassert_true(areas[2].fe_sector == loc.fe_sector && in ZTEST()
58 areas[2].fe_data_off == loc.fe_data_off && in ZTEST()
59 areas[2].fe_data_len == loc.fe_data_len, in ZTEST()
65 zassert_true(areas[0].fe_sector == loc.fe_sector && in ZTEST()
66 areas[0].fe_data_off == loc.fe_data_off && in ZTEST()
[all …]
/Zephyr-Core-3.6.0/scripts/pylib/pytest-twister-harness/tests/helpers/
Dshell_mcuboot_command_parser_test.py33 assert isinstance(mcuboot_parsed.areas[0], ShellMCUbootArea)
34 assert len(mcuboot_parsed.areas) == 2
35 assert mcuboot_parsed.areas[0].version == '0.0.2+0'
36 assert mcuboot_parsed.areas[0].swap_type == 'test'
55 assert len(mcuboot_parsed.areas) == 1
56 assert mcuboot_parsed.areas[0].version == '1.1.1+1'
/Zephyr-Core-3.6.0/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dshell.py109 areas: list[ShellMCUbootArea] = field(default_factory=list) variable in ShellMCUbootCommandParsed
116 areas: list[dict] = []
121 areas.append({'name': m.group(1)})
122 elif areas:
124 areas[-1][m.group('key').strip().replace(' ', '_')] = m.group('val').strip()
126 for area in areas:
/Zephyr-Core-3.6.0/scripts/
Dset_assignees.py90 areas = maintainer_file.path2areas(changed_file.filename)
92 if not areas:
95 all_areas.update(areas)
97 sorted_areas = sorted(areas, key=lambda x: 'Platform' in x.name, reverse=True)
118 collab += maintainer_file.areas[area.name].maintainers
119 collab += maintainer_file.areas[area.name].collaborators
245 for _, area in maintainer_file.areas.items():
259 for areas, maintainers in dict(label_to_maintainer).items():
260 for area in areas:
297 if area not in maintainers_file.areas:
[all …]
Dget_maintainer.py185 self.areas = {}
210 self.areas[area_name] = area
231 return [area for area in self.areas.values()
264 areas = self.path2areas(path)
265 res.update(areas)
266 if not areas:
284 for area in self.areas.values():
305 for area in self.areas.values():
313 print('{:14}\t{}'.format('areas:', len(self.areas)))
327 for area in self.areas.values():
[all …]
/Zephyr-Core-3.6.0/tests/boot/with_mcumgr/pytest/
Dutils.py42 assert mcuboot_areas.areas[0].version == version
44 assert mcuboot_areas.areas[0].swap_type == swap_type
/Zephyr-Core-3.6.0/subsys/dfu/boot/
Dmcuboot_shell.c28 static const struct area_desc areas[] = { variable
233 for (i = 0; i < ARRAY_SIZE(areas); i++) { in cmd_mcuboot_info()
235 cmd_mcuboot_info_area(sh, &areas[i]); in cmd_mcuboot_info()
/Zephyr-Core-3.6.0/doc/_extensions/zephyr/
Dgh_utils.py144 areas = MAINTAINERS.path2areas(rel_path)
145 if areas:
146 labels += "," + ",".join([label for area in areas for label in area.labels])
/Zephyr-Core-3.6.0/doc/project/
Dproject_roles.rst17 **Collaborator**: A highly involved Contributor in one or more areas.
23 particular code base areas or subsystems.
116 * Right to set the overall architecture of the relevant subsystems or areas
118 * Right to make decisions in the relevant subsystems or areas of involvement,
121 * Responsibility to convey the direction of the relevant subsystem or areas to
198 A team of active Maintainers involved in multiple areas.
292 * We should be looking for maintainers for areas of code that
295 * Un-maintained areas should be indicated clearly in the MAINTAINERS file
301 assignee for un-maintained sub-areas
311 * Major changes to the file, including the addition of new areas with new maintainers
[all …]
/Zephyr-Core-3.6.0/doc/services/retention/
Dindex.rst7 write data from and to memory areas or devices that retain the data while the
21 the retained data sections into multiple distinct areas. For example, a 64-byte
107 The retention areas can then be accessed using the data retention API (once
127 Mutex protection of retention areas is enabled by default when applications are
132 areas by enabling :kconfig:option:`CONFIG_RETENTION_MUTEX_FORCE_DISABLE` -
/Zephyr-Core-3.6.0/doc/hardware/peripherals/
Dretained_mem.rst10 areas whereby the contents of the memory is retained whilst the device is
/Zephyr-Core-3.6.0/.github/ISSUE_TEMPLATE/
D003_rfc-proposal.md42 modifications in other areas), or other teams/projects.
/Zephyr-Core-3.6.0/subsys/settings/
DKconfig100 int "Number of flash areas used by the settings subsystem"
104 Number of areas to allocate in the settings FCB. A smaller number is
/Zephyr-Core-3.6.0/doc/kernel/iterable_sections/
Dindex.rst7 which can be used for defining iterable areas of equally-sized data structures,
/Zephyr-Core-3.6.0/doc/develop/toolchains/
Darm_compiler.rst47 place, but there are still areas covered in ld templates which are not
/Zephyr-Core-3.6.0/lib/posix/options/
DKconfig.pthread59 facilitate a more dynamic approach to guard areas (via software or
/Zephyr-Core-3.6.0/arch/x86/zefi/
DREADME.txt19 areas, then jump into the 64 bit entry point.
86 sneak around EFI areas. But the Zephyr loader should at least detect
/Zephyr-Core-3.6.0/arch/x86/core/
DKconfig.intel6479 by preceding all stack areas with a 4K guard page.
/Zephyr-Core-3.6.0/doc/develop/languages/c/
Dminimal_libc.rst8 needs of Zephyr and its subsystems, primarily in the areas of string
/Zephyr-Core-3.6.0/samples/subsys/display/lvgl/
DREADME.rst31 widgets such as text areas. If the board used with this sample has a
/Zephyr-Core-3.6.0/doc/build/dts/
Ddesign.rst8 specific examples about how they impact Zephyr's source code, and areas where
/Zephyr-Core-3.6.0/doc/releases/
Dindex.rst72 areas of the project during the development cycle of the release.
/Zephyr-Core-3.6.0/include/zephyr/arch/x86/intel64/
Dlinker.ld14 /* Used to align areas with separate memory permission characteristics
/Zephyr-Core-3.6.0/doc/services/storage/flash_map/
Dflash_map.rst10 to a "flash map", which contains predefined flash areas accessible via globally
/Zephyr-Core-3.6.0/include/zephyr/arch/x86/ia32/
Dlinker.ld61 /* Used to align areas with separate memory permission characteristics
377 /* ROM ends here, position counter will now be in RAM areas */

123