Home
last modified time | relevance | path

Searched refs:paths (Results 1 – 25 of 97) sorted by relevance

1234

/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/
Dleshan.py307 def _composite_params(self, paths: list[str] | None = None):
314 if paths is not None:
315 paths = [path if path.startswith('/') else '/' + path for path in paths]
316 parameters['paths'] = ','.join(paths)
320 def composite_read(self, endpoint: str, paths: list[str]):
322 parameters = self._composite_params(paths)
401 def composite_observe(self, endpoint: str, paths: list[str]):
402 parameters = self._composite_params(paths)
407 def cancel_composite_observe(self, endpoint: str, paths: list[str]):
408 paths = [path if path.startswith('/') else '/' + path for path in paths]
[all …]
/Zephyr-latest/cmake/modules/
Droot.cmake5 # Convert Zephyr roots to absolute paths.
7 # This CMake module will convert all relative paths in existing ROOT lists to
17 # If a root is defined it will check the list of paths in the root and convert
33 # Convert paths to absolute, relative from APPLICATION_SOURCE_DIR
Dpre_dt.cmake29 # - SHIELD_DIRS: paths to shield definitions (added to DTS_ROOT)
33 # Convert relative paths to absolute paths relative to the application
47 # Convert the directories in DTS_ROOT to absolute paths without
Dsoc_v1.cmake57 - if in doubt, use absolute paths\n")
/Zephyr-latest/share/sysbuild/cmake/modules/
Dsysbuild_root.cmake5 # Convert Zephyr roots to absolute paths to be used by sysbuild.
7 # This CMake module will convert all relative paths in existing ROOT lists to
17 # If a root is defined it will check the list of paths in the root and convert
21 # Converted paths are placed in the CMake cache so that they are propagated
36 # Convert paths to absolute, relative from APP_DIR
/Zephyr-latest/tests/bsim/bluetooth/
Dtests.nrf52bsim.txt1 # Search paths(s) for tests which will be run in the nrf52bsim
Dtests.nrf54l15bsim_nrf54l15_cpuapp.txt1 # Search paths(s) for tests which will be run in the nrf54l15 app core
Dtests.nrf5340bsim_nrf5340_cpuapp.txt1 # Search paths(s) for tests which will be run in the nrf5340 split stack configuration
Dtests.nrf5340bsim_nrf5340_cpunet.txt1 # Search paths(s) for tests which will be run in the nrf5340 net core (both app, host and controller
/Zephyr-latest/scripts/
Dsnippets.py86 self.paths: Set[Path] = set()
112 snippets.paths = set(map(lambda x: str(PurePosixPath(x)), snippets.paths))
121 sorted(f'"{path}"' for path in snippets.paths))
286 snippets.paths.add(snippet_yml)
Dget_maintainer.py257 for path in args.paths:
263 for path in args.paths:
530 paths = tuple(root.glob(glob_pattern))
531 if not paths:
536 if all(path.is_dir() for path in paths):
Dlist_hardware.py202 def unique_paths(paths): argument
204 yield from dict.fromkeys(map(Path.resolve, paths)).keys()
/Zephyr-latest/tests/bluetooth/df/connectionless_cte_chains/
DCMakeLists.txt15 # Include paths to allow access to functions implemented in BLE controller
/Zephyr-latest/doc/services/llext/
Dindex.rst25 Harvard architecture cores that separate code and data paths and have no
Dbuild.rst168 to the compiler's include search paths.
173 the compiler's include search paths.
178 build to the compiler's include search paths. This is a combination of
/Zephyr-latest/doc/develop/optimizations/
Dtools.rst32 * No paths - The RAM and ROM reports list all processing symbols with relative paths
33 in the No paths category.
41 You can have multiple cases of the same function, and the No paths category
67 ├── (no paths) 2748 59.26% -
/Zephyr-latest/cmake/linker_script/arm/
Dlinker.cmake44 dt_comp_path(paths COMPATIBLE "zephyr,memory-region")
45 foreach(path IN LISTS paths)
208 dt_comp_path(paths COMPATIBLE "zephyr,memory-region")
209 foreach(path IN LISTS paths)
/Zephyr-latest/doc/_scripts/
Dgen_devicetree_rest.py320 paths = set()
326 paths.add(bindings_dir / binding_filename(binding))
331 if path not in paths:
765 paths = set(compatibles_dir / compatible_filename(compatible)
769 if path not in paths:
/Zephyr-latest/modules/mbedtls/
DKconfig128 Adds compile options, which should convert full source paths in
145 result in full paths or paths relative to west root directory
242 disabled if the include paths for MBEDTLS are causing aliasing
/Zephyr-latest/doc/develop/tools/
Dvscode.rst13 Windows, just make sure to adjust the paths if needed.
48 required information (ex. include paths):
/Zephyr-latest/doc/develop/sca/
Declair.rst95 relative paths and absolute paths.
/Zephyr-latest/doc/hardware/arch/
Dsemihost.rst25 emulated platform. File paths can be either absolute, or relative to the
/Zephyr-latest/scripts/footprint/
Dsize_report559 paths = list()
564 paths.append(file)
567 return os.path.commonpath(paths)
/Zephyr-latest/cmake/
Dllext-edk.cmake10 # all necessary headers and flags. File paths are made relative to a few key
44 # Helper function to generate relative paths to a few key directories
/Zephyr-latest/doc/connectivity/networking/api/
Dnet_pkt_filter.rst21 Both the transmission and reception paths may have a list of filter rules.

1234