Searched refs:dlopen_handle_ (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | plugin.h | 43 return dlopen_handle_ != nullptr; in IsLoaded() 65 dlopen_handle_(other.dlopen_handle_) { in Plugin() 66 other.dlopen_handle_ = nullptr; in Plugin() 70 explicit Plugin(const std::string& library) : library_(library), dlopen_handle_(nullptr) { } in Plugin() 73 void* dlopen_handle_; variable
|
D | plugin.cc | 30 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) { in Plugin() 53 dlopen_handle_ = res; in Load() 60 void* handle = dlopen_handle_; in Unload() 71 dlopen_handle_ = nullptr; in Unload() 82 return os << "Plugin { library=\"" << m.library_ << "\", handle=" << m.dlopen_handle_ << " }"; in operator <<()
|
D | oat_file.cc | 911 dlopen_handle_(nullptr), in DlOpenOatFile() 916 if (dlopen_handle_ != nullptr) { in ~DlOpenOatFile() 919 host_dlopen_handles_.erase(dlopen_handle_); in ~DlOpenOatFile() 920 dlclose(dlopen_handle_); in ~DlOpenOatFile() 922 dlclose(dlopen_handle_); in ~DlOpenOatFile() 931 reinterpret_cast<const uint8_t*>(dlsym(dlopen_handle_, symbol_name.c_str())); in FindDynamicSymbolAddress() 971 void* dlopen_handle_; // TODO: Unique_ptr with custom deleter. member in art::FINAL 1046 DCHECK(dlopen_handle_ != nullptr || !success); in Load() 1078 dlopen_handle_ = android_dlopen_ext(absolute_path.get(), RTLD_NOW, &extinfo); in Dlopen() 1083 dlopen_handle_ = dlopen(absolute_path.get(), RTLD_NOW); in Dlopen() [all …]
|
/art/runtime/ti/ |
D | agent.cc | 155 CHECK(dlopen_handle_ != nullptr) << "Cannot find symbols in an unloaded agent library " << this; in FindSymbol() 156 return dlsym(dlopen_handle_, name.c_str()); in FindSymbol() 161 if (dlopen_handle_ != nullptr) { in Unload() 168 dlopen_handle_ = nullptr; in Unload() 178 : dlopen_handle_(nullptr), in Agent() 187 if (dlopen_handle_ != nullptr) { in operator =() 191 dlopen_handle_ = other.dlopen_handle_; in operator =() 195 other.dlopen_handle_ = nullptr; in operator =() 219 if (dlopen_handle_ != nullptr) { in ~Agent() 229 return os << "Agent { name=\"" << m.name_ << "\", handle=" << m.dlopen_handle_ << " }"; in operator <<()
|
D | agent.h | 115 dlopen_handle_(dlopen_handle), in Agent() 125 void* dlopen_handle_; variable
|