OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:module_get_absolute
(Results
1 - 5
of
5
) sorted by null
/external/syslinux/com32/lib/sys/module/
elf_module.c
73
(Elf_Word*)
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
77
(Elf_Word*)
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
81
(char*)
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
85
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
94
module->got =
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
127
start =
module_get_absolute
(ctors_start->st_value, module);
128
end =
module_get_absolute
(ctors_end->st_value, module);
156
start =
module_get_absolute
(dtors_start->st_value, module);
157
end =
module_get_absolute
(dtors_end->st_value, module);
264
module_get_absolute
(main_sym->st_value, module)
[
all
...]
/external/syslinux/com32/lib/sys/module/i386/
elf_module.c
123
if (image_read((char *)
module_get_absolute
(cr_pht->p_vaddr, module) + aux_off,
134
if (image_read(
module_get_absolute
(cr_pht->p_vaddr, module),
145
(Elf32_Addr)
module_get_absolute
(cr_pht->p_vaddr, module));
175
module->dyn_table =
module_get_absolute
(dyn_addr, module);
192
Elf32_Word *dest =
module_get_absolute
(rel->r_offset, module);
228
sym_addr = (Elf32_Addr)
module_get_absolute
(sym_def->st_value, sym_module);
295
plt_rel =
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
300
rel =
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
/external/syslinux/com32/lib/sys/module/x86_64/
elf_module.c
123
if (image_read((char *)
module_get_absolute
(cr_pht->p_vaddr, module) + aux_off,
134
if (image_read(
module_get_absolute
(cr_pht->p_vaddr, module),
145
(Elf64_Addr)
module_get_absolute
(cr_pht->p_vaddr, module));
175
module->dyn_table =
module_get_absolute
(dyn_addr, module);
192
Elf64_Xword *dest =
module_get_absolute
(rel->r_offset, module);
228
sym_addr = (Elf64_Addr)
module_get_absolute
(sym_def->st_value, sym_module);
299
plt_rel =
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
304
rel =
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
307
rel =
module_get_absolute
(dyn_entry->d_un.d_ptr, module);
/external/syslinux/com32/include/sys/
module.h
330
*
module_get_absolute
- converts an memory address relative to a module base address
337
static inline void *
module_get_absolute
(Elf_Addr addr, struct elf_module *module) {
function
/external/syslinux/com32/lua/src/
loadlib.c
257
return (lua_CFunction)
module_get_absolute
(p->st_value, (struct elf_module *)lib);
Completed in 467 milliseconds