Searched refs:dependency (Results 1 – 25 of 78) sorted by relevance
1234
/Zephyr-latest/include/zephyr/linker/ |
D | app_smem.ld | 9 * greps for "#include" to generate dependency list. 11 * in the dependency list. This creates weird dependency 20 * Since the dependency list of A.cmd contains both 26 * the dependency list. The dependencies should then be
|
D | app_smem_pinned.ld | 13 * greps for "#include" to generate dependency list. 15 * in the dependency list. This creates weird dependency 24 * Since the dependency list of A.cmd contains both 30 * the dependency list. The dependencies should then be
|
/Zephyr-latest/subsys/llext/ |
D | llext_link.c | 78 static int llext_dependency_add(struct llext *ext, struct llext *dependency) in llext_dependency_add() argument 82 for (i = 0; i < ARRAY_SIZE(ext->dependency); i++) { in llext_dependency_add() 83 if (ext->dependency[i] == dependency) { in llext_dependency_add() 87 if (!ext->dependency[i]) { in llext_dependency_add() 88 ext->dependency[i] = dependency; in llext_dependency_add() 89 dependency->use_count++; in llext_dependency_add() 102 for (i = 0; i < ARRAY_SIZE(ext->dependency) && ext->dependency[i]; i++) { in llext_dependency_remove_all() 107 ext->dependency[i]->use_count--; in llext_dependency_remove_all() 108 __ASSERT(ext->dependency[i]->use_count, "LLEXT dependency use-count underrun!"); in llext_dependency_remove_all()
|
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/ |
D | sysbuild.cmake | 23 # Add a dependency so that the remote sample will be built and flashed first 25 # Add dependency so that the remote image is flashed first.
|
/Zephyr-latest/cmake/modules/ |
D | FindHostTools.cmake | 55 # gperf is an optional dependency 58 # openocd is an optional dependency 61 # bossac is an optional dependency 64 # imgtool is an optional dependency (prefer the version that is in the mcuboot repository, if 69 # winpty is an optional dependency
|
/Zephyr-latest/doc/services/serialization/ |
D | nanopb.rst | 19 Use ``apt`` to install dependency: 27 Use ``brew`` to install dependency: 35 Use ``choco`` to install dependency:
|
/Zephyr-latest/boards/qemu/arc/ |
D | Kconfig.defconfig | 11 # Required to satisfy dependency of networking stack on RNG
|
/Zephyr-latest/tests/modules/nanopb/lib/ |
D | CMakeLists.txt | 5 # Demonstrate that our library includes a generated header so we need the following dependency
|
/Zephyr-latest/drivers/mfd/ |
D | Kconfig.tle9104 | 8 # using select SPI at this point introduces a cyclic dependency
|
D | Kconfig.bd8lb600fs | 8 # using select SPI at this point introduces a cyclic dependency
|
/Zephyr-latest/tests/subsys/nrfs/ |
D | sysbuild.cmake | 16 # Add a dependency so that the remote image will be built and flashed first
|
/Zephyr-latest/soc/nxp/mcx/ |
D | Kconfig | 5 # and do not make it a dependency of anything else.
|
D | Kconfig.defconfig | 5 # and do not make it a dependency of anything else.
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | Kconfig.mctl | 44 # TODO: Remove dependency on BT_MCC once MCC has been reworked 53 # TODO: Remove dependency on BT_MCC_OTS once MCC has been reworked
|
/Zephyr-latest/doc/services/portability/posix/implementation/ |
D | index.rst | 39 the other library or subsystem. This reduces the likelihood of dependency cycles in code. When 42 ``libzfoo`` also depends on ``libposix``, then there is a dependency cycle. The cycle can be 43 removed via mutual dependency, ``libcommon``.
|
/Zephyr-latest/scripts/ |
D | requirements-extras.txt | 24 # used to generate devicetree dependency graphs
|
/Zephyr-latest/cmake/ |
D | cfb.cmake | 41 # dependency between the two targets 56 # 'custom_target' for it and setting up a dependency between the two
|
/Zephyr-latest/modules/ |
D | Kconfig.sysbuild | 23 # This ensures that symbols are available in Kconfig for dependency checking
|
/Zephyr-latest/soc/nxp/imxrt/imxrt11xx/ |
D | sysbuild.cmake | 37 # Add dependency on CM4 core image to CM7 image. This way,
|
/Zephyr-latest/include/zephyr/llext/ |
D | llext.h | 122 struct llext *dependency[LLEXT_MAX_DEPENDENCIES]; member
|
/Zephyr-latest/cmake/linker/ld/ |
D | linker_libraries.cmake | 28 # link dependency to libc (strchr), but libc also has dependencies to libgcc.
|
/Zephyr-latest/doc/services/resource_management/ |
D | index.rst | 35 * The core operations are request (add a dependency) and release (remove 36 a dependency). Supporting operations are reset (to clear an error
|
/Zephyr-latest/subsys/net/l2/wifi/ |
D | CMakeLists.txt | 84 # Add explicit dependency on app target for ZEPHYR_CURRENT_LIBRARY, so these
|
/Zephyr-latest/doc/services/debugging/ |
D | mipi_stp_decoder.rst | 23 Decoder has internal state since there are dependency between opcodes (e.g. timestamp can be
|
/Zephyr-latest/doc/build/dts/api/ |
D | api.rst | 146 A *dependency ordering* of a devicetree is a list of its nodes, where each node 148 *dependency ordinal* is then its zero-based index in that list. Thus, for two 149 distinct devicetree nodes ``n1`` and ``n2`` with dependency ordinals ``d1`` and 156 The Zephyr build system chooses a dependency ordering of the final devicetree 157 and assigns a dependency ordinal to each node. Dependency related information 158 can be accessed using the following macros. The exact dependency ordering
|
1234