Searched refs:paths (Results 1 – 25 of 97) sorted by relevance
1234
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/ |
D | leshan.py | 307 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/ |
D | root.cmake | 5 # 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
|
D | pre_dt.cmake | 29 # - 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
|
D | soc_v1.cmake | 57 - if in doubt, use absolute paths\n")
|
/Zephyr-latest/share/sysbuild/cmake/modules/ |
D | sysbuild_root.cmake | 5 # 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/ |
D | tests.nrf52bsim.txt | 1 # Search paths(s) for tests which will be run in the nrf52bsim
|
D | tests.nrf54l15bsim_nrf54l15_cpuapp.txt | 1 # Search paths(s) for tests which will be run in the nrf54l15 app core
|
D | tests.nrf5340bsim_nrf5340_cpuapp.txt | 1 # Search paths(s) for tests which will be run in the nrf5340 split stack configuration
|
D | tests.nrf5340bsim_nrf5340_cpunet.txt | 1 # Search paths(s) for tests which will be run in the nrf5340 net core (both app, host and controller
|
/Zephyr-latest/scripts/ |
D | snippets.py | 86 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)
|
D | get_maintainer.py | 257 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):
|
D | list_hardware.py | 202 def unique_paths(paths): argument 204 yield from dict.fromkeys(map(Path.resolve, paths)).keys()
|
/Zephyr-latest/tests/bluetooth/df/connectionless_cte_chains/ |
D | CMakeLists.txt | 15 # Include paths to allow access to functions implemented in BLE controller
|
/Zephyr-latest/doc/services/llext/ |
D | index.rst | 25 Harvard architecture cores that separate code and data paths and have no
|
D | build.rst | 168 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/ |
D | tools.rst | 32 * 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/ |
D | linker.cmake | 44 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/ |
D | gen_devicetree_rest.py | 320 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/ |
D | Kconfig | 128 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/ |
D | vscode.rst | 13 Windows, just make sure to adjust the paths if needed. 48 required information (ex. include paths):
|
/Zephyr-latest/doc/develop/sca/ |
D | eclair.rst | 95 relative paths and absolute paths.
|
/Zephyr-latest/doc/hardware/arch/ |
D | semihost.rst | 25 emulated platform. File paths can be either absolute, or relative to the
|
/Zephyr-latest/scripts/footprint/ |
D | size_report | 559 paths = list() 564 paths.append(file) 567 return os.path.commonpath(paths)
|
/Zephyr-latest/cmake/ |
D | llext-edk.cmake | 10 # 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/ |
D | net_pkt_filter.rst | 21 Both the transmission and reception paths may have a list of filter rules.
|
1234