Home
last modified time | relevance | path

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

/libnativehelper/
DDlHelp.c48 DlSymbol DlGetSymbol(DlLibrary handle, const char* symbol) { in DlGetSymbol() argument
50 return (DlSymbol) GetProcAddress(handle, symbol); in DlGetSymbol()
52 return dlsym(handle, symbol); in DlGetSymbol()
Dlibnativehelper_lazy.c95 static void BindSymbol(void* handle, const char* name, enum MethodIndex index) { in BindSymbol() argument
96 void* symbol = dlsym(handle, name); in BindSymbol()
103 void* handle = LoadLibnativehelper(RTLD_NOW); in InitializeOnce() local
104 LOG_ALWAYS_FATAL_IF(handle == NULL, "Failed to load libnativehelper.so: %s", dlerror()); in InitializeOnce()
107 #define BIND_SYMBOL(name) BindSymbol(handle, #name, k_ ## name); in InitializeOnce()