kobj.h | 39 typedef struct kobj *kobj_t; typedef in typeref:struct:kobj * 42 int kobj_load_vfs(kobj_t *, const char *, const bool); 43 int kobj_load_mem(kobj_t *, const char *, void *, ssize_t); 44 int kobj_affix(kobj_t, const char *); 45 void kobj_unload(kobj_t); 46 int kobj_stat(kobj_t, vaddr_t *, size_t *); 47 int kobj_find_section(kobj_t, const char *, void **, size_t *); 50 const Elf_Sym * kobj_symbol(kobj_t, uintptr_t); 51 int kobj_sym_lookup(kobj_t, uintptr_t, Elf_Addr *); 52 int kobj_reloc(kobj_t, uintptr_t, const void *, bool, bool) [all...] |