Lines Matching refs:extension
4 Once an extension is built and the ELF file is available, it can be loaded into
6 extension into memory, access its symbols and call its functions.
8 Loading an extension
11 An extension may be loaded using any implementation of a :c:struct:`llext_loader`
19 passing in the extension name and the configured loader. Once that completes
20 successfully, the extension is loaded into memory and is ready to be used.
23 When :ref:`User Mode <usermode_api>` is enabled, the extension will not be
27 Initializing and cleaning up the extension
30 The extension may define a number of initialization functions that must be
34 extension.
47 If the extension requires a dedicated thread, the :c:func:`llext_bootstrap`
56 To interact with the newly loaded extension, the host application must use the
63 Advanced users that need direct access to areas of the newly loaded extension
71 the extension once it is no longer required. After this call completes, all
72 pointers to symbols in the extension that were obtained will be invalid.
83 * Constants and variables defined in the extension do not have the expected
86 * Calling a function defined in an extension results in a hard fault, or memory
97 * Try to simplify the extension to the minimum possible code that reproduces