Searched refs:handle_ (Results 1 - 3 of 3) sorted by relevance

/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...]
/bionic/linker/
H A Dlinker_soinfo.cpp70 g_soinfo_handles_map.erase(handle_);
715 CHECK(handle_ != 0);
716 return handle_;
729 CHECK(handle_ == 0); // Make sure this is the first call
734 arc4random_buf(&handle_, sizeof(handle_));
738 handle_ = handle_ | 1;
739 } while (handle_ == reinterpret_cast<uintptr_t>(RTLD_DEFAULT) ||
740 handle_
[all...]
H A Dlinker_soinfo.h338 uintptr_t handle_; member in struct:soinfo

Completed in 1345 milliseconds