HomeSort by relevance Sort by last modified time
    Searched defs:dso_handle (Results 1 - 3 of 3) sorted by null

  /bionic/libc/bionic/
__cxa_thread_atexit_impl.cpp 26 void *dso_handle; // unused... member in class:thread_local_dtor
30 extern "C" int __cxa_thread_atexit_impl(void (*func) (void *), void *arg, void *dso_handle);
31 extern "C" void __loader_add_thread_local_dtor(void* dso_handle) __attribute__((weak));
32 extern "C" void __loader_remove_thread_local_dtor(void* dso_handle) __attribute__((weak));
35 int __cxa_thread_atexit_impl(void (*func) (void *), void *arg, void *dso_handle) {
40 dtor->dso_handle = dso_handle;
46 __loader_add_thread_local_dtor(dso_handle);
59 __loader_remove_thread_local_dtor(current->dso_handle);
pthread_atfork.cpp 43 void* dso_handle; member in struct:atfork_t
165 entry->dso_handle = dso;
179 return entry->dso_handle == dso;
  /device/linaro/hikey/gralloc960/
mali_gralloc_formats.cpp 46 void *dso_handle = NULL; local
54 dso_handle = dlopen(name, RTLD_LAZY);
65 dso_handle = module->dso;
69 if(dso_handle)
71 void *sym = dlsym(dso_handle, MALI_GRALLOC_FORMATCAPS_SYM_NAME_STR);
81 dlclose(dso_handle);

Completed in 281 milliseconds