HomeSort by relevance Sort by last modified time
    Searched refs:linker_function_t (Results 1 - 4 of 4) sorted by null

  /ndk/sources/android/crazy_linker/src/
crazy_linker_shared_library.h 165 typedef void (*linker_function_t)(); typedef in class:crazy::SharedLibrary
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_;
crazy_linker_shared_library.cpp 65 typedef SharedLibrary::linker_function_t linker_function_t; typedef in namespace:crazy::__anon27799
74 void CallFunction(linker_function_t func, const char* func_type) {
228 init_func_ = reinterpret_cast<linker_function_t>(dyn_addr);
232 fini_func_ = reinterpret_cast<linker_function_t>(dyn_addr);
236 init_array_ = reinterpret_cast<linker_function_t*>(dyn_addr);
246 fini_array_ = reinterpret_cast<linker_function_t*>(dyn_addr);
256 preinit_array_ = reinterpret_cast<linker_function_t*>(dyn_addr);
  /bionic/linker/
linker.h 104 typedef void (*linker_function_t)(); typedef
229 linker_function_t* preinit_array_;
232 linker_function_t* init_array_;
234 linker_function_t* fini_array_;
237 linker_function_t init_func_;
238 linker_function_t fini_func_;
348 void call_array(const char* array_name, linker_function_t* functions, size_t count, bool reverse);
349 void call_function(const char* function_name, linker_function_t function);
linker.cpp     [all...]

Completed in 166 milliseconds