Searched defs:handle_ (Results 1 - 2 of 2) sorted by relevance

/bionic/linker/
H A Dlinker_soinfo.h338 uintptr_t handle_; member in struct:soinfo
/bionic/tests/
H A Ddlext_test.cpp68 handle_ = nullptr;
79 if (handle_ != nullptr) {
80 ASSERT_DL_ZERO(dlclose(handle_));
84 void* handle_; member in class:DlExtTest
88 handle_ = android_dlopen_ext(kLibName, RTLD_NOW, nullptr);
89 ASSERT_DL_NOTNULL(handle_);
90 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber"));
98 handle_ = android_dlopen_ext(kLibName, RTLD_NOW, &extinfo);
99 ASSERT_DL_NOTNULL(handle_);
100 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumbe
[all...]

Completed in 74 milliseconds