Searched refs:llext_load (Results  1 – 11 of 11) sorted by relevance
| /Zephyr-latest/tests/subsys/llext/src/ | 
| D | test_llext.c | 131 	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/ | 
| D | main_module.c | 30 	res = llext_load(ldr, "ext", &ext, &ldr_parm);  in main()
  | 
| /Zephyr-latest/subsys/llext/ | 
| D | CMakeLists.txt | 12 		llext_load.c
  | 
| D | shell.c | 153 	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()
  | 
| D | llext.c | 167 int llext_load(struct llext_loader *ldr, const char *name, struct llext **ext,  in llext_load()  function
  | 
| /Zephyr-latest/tests/misc/llext-edk/src/ | 
| D | main.c | 61 	llext_load(loader, "extension", ext, &ldr_parm);  in load_and_run_extension()
  | 
| /Zephyr-latest/doc/services/llext/ | 
| D | load.rst | 14 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.
  | 
| D | debug.rst | 9 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 ([...])
  | 
| D | config.rst | 81            before it can be used again in a call to :c:func:`llext_load`.
  | 
| /Zephyr-latest/include/zephyr/llext/ | 
| D | llext.h | 217 int llext_load(struct llext_loader *loader, const char *name, struct llext **ext,
  | 
| /Zephyr-latest/samples/subsys/llext/edk/app/src/ | 
| D | main.c | 78 	llext_load(loader, name, ext, &ldr_parm);  in load()
  |