Home
last modified time | relevance | path

Searched refs:linker_function_t (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_shared_library.h165 typedef void (*linker_function_t)(); typedef
181 linker_function_t* preinit_array_;
183 linker_function_t* init_array_;
185 linker_function_t* fini_array_;
187 linker_function_t init_func_;
188 linker_function_t fini_func_;
Dcrazy_linker_shared_library.cpp65 typedef SharedLibrary::linker_function_t linker_function_t; typedef
74 void CallFunction(linker_function_t func, const char* func_type) { in CallFunction()
228 init_func_ = reinterpret_cast<linker_function_t>(dyn_addr); in Load()
232 fini_func_ = reinterpret_cast<linker_function_t>(dyn_addr); in Load()
236 init_array_ = reinterpret_cast<linker_function_t*>(dyn_addr); in Load()
246 fini_array_ = reinterpret_cast<linker_function_t*>(dyn_addr); in Load()
256 preinit_array_ = reinterpret_cast<linker_function_t*>(dyn_addr); in Load()