Home
last modified time | relevance | path

Searched refs:llext_load (Results 1 – 11 of 11) sorted by relevance

/Zephyr-latest/tests/subsys/llext/src/
Dtest_llext.c131 int res = llext_load(loader, test_case->name, &ext, &ldr_parm); in load_call_unload()
375 res = llext_load(ldr, "inspect", &ext, &ldr_parm); in ZTEST()
434 int ret = llext_load(loader_dependency, "inter_ext_dependency", &ext_dependency, &ldr_parm); in ZTEST()
438 ret = llext_load(loader_dependent, "export_dependent", &ext_dependent, &ldr_parm); in ZTEST()
469 res = llext_load(loader, "pre_located", &ext, &ldr_parm); in ZTEST()
502 res = llext_load(loader, "find_section", &ext, &ldr_parm); in ZTEST()
559 res = llext_load(detached_loader, "test_detached", &detached_llext, &ldr_parm); in ZTEST()
625 res = llext_load(loader, "hello_world", &ext, &ldr_parm); in ZTEST()
/Zephyr-latest/samples/subsys/llext/modules/src/
Dmain_module.c30 res = llext_load(ldr, "ext", &ext, &ldr_parm); in main()
/Zephyr-latest/subsys/llext/
DCMakeLists.txt12 llext_load.c
Dshell.c153 int res = llext_load(ldr, name, &ext, &ldr_parm); in cmd_llext_load_hex()
215 res = llext_load(ldr, argv[1], &ext, &ldr_parm); in cmd_llext_load_fs()
Dllext.c167 int llext_load(struct llext_loader *ldr, const char *name, struct llext **ext, in llext_load() function
/Zephyr-latest/tests/misc/llext-edk/src/
Dmain.c61 llext_load(loader, "extension", ext, &ldr_parm); in load_and_run_extension()
/Zephyr-latest/doc/services/llext/
Dload.rst14 needed by the :c:func:`llext_load` function. An implementation over a buffer
18 The extensions are loaded with a call to the :c:func:`llext_load` function,
92 obtain a log of the :c:func:`llext_load` invocation.
Ddebug.rst9 dynamically relocated by :c:func:`llext_load` at runtime, so even if the
47 4. Set a breakpoint just after the :c:func:`llext_load` function in your code
154 Connect, set a breakpoint on the ``llext_load`` function and run until it
164 (gdb) break llext_load
169 Breakpoint 1, llext_load (ldr=ldr@entry=0x2000bef0 <ztest_thread_stack+3488>,
176 Run till exit from #0 llext_load ([...])
Dconfig.rst81 before it can be used again in a call to :c:func:`llext_load`.
/Zephyr-latest/include/zephyr/llext/
Dllext.h217 int llext_load(struct llext_loader *loader, const char *name, struct llext **ext,
/Zephyr-latest/samples/subsys/llext/edk/app/src/
Dmain.c78 llext_load(loader, name, ext, &ldr_parm); in load()