Home
last modified time | relevance | path

Searched refs:dlopen_handle_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/ti/
Dagent.cc78 return dlsym(dlopen_handle_, name.c_str()); in FindSymbol()
84 DCHECK(dlopen_handle_ == nullptr); in DoDlOpen()
89 dlopen_handle_ = dlopen(name_.c_str(), RTLD_LAZY); in DoDlOpen()
90 if (dlopen_handle_ == nullptr) { in DoDlOpen()
112 if (dlopen_handle_ != nullptr) { in Unload()
116 dlclose(dlopen_handle_); in Unload()
117 dlopen_handle_ = nullptr; in Unload()
127 : dlopen_handle_(nullptr), in Agent()
141 : dlopen_handle_(nullptr), in Agent()
151 if (other.dlopen_handle_ != nullptr) { in operator =()
[all …]
Dagent.h49 return dlopen_handle_ != nullptr; in IsStarted()
99 void* dlopen_handle_; variable
/art/runtime/
Dplugin.h42 return dlopen_handle_ != nullptr; in IsLoaded()
64 dlopen_handle_(other.dlopen_handle_) { in Plugin()
65 other.dlopen_handle_ = nullptr; in Plugin()
69 explicit Plugin(const std::string& library) : library_(library), dlopen_handle_(nullptr) { } in Plugin()
72 void* dlopen_handle_; variable
Dplugin.cc32 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) { in Plugin()
58 dlopen_handle_ = res; in Load()
65 void* handle = dlopen_handle_; in Unload()
76 dlopen_handle_ = nullptr; in Unload()
89 return os << "Plugin { library=\"" << m.library_ << "\", handle=" << m.dlopen_handle_ << " }"; in operator <<()
Doat_file.cc683 dlopen_handle_(nullptr), in DlOpenOatFile()
688 if (dlopen_handle_ != nullptr) { in ~DlOpenOatFile()
691 host_dlopen_handles_.erase(dlopen_handle_); in ~DlOpenOatFile()
692 dlclose(dlopen_handle_); in ~DlOpenOatFile()
694 dlclose(dlopen_handle_); in ~DlOpenOatFile()
703 reinterpret_cast<const uint8_t*>(dlsym(dlopen_handle_, symbol_name.c_str())); in FindDynamicSymbolAddress()
739 void* dlopen_handle_; // TODO: Unique_ptr with custom deleter. member in art::FINAL
814 DCHECK(dlopen_handle_ != nullptr || !success); in Load()
846 dlopen_handle_ = android_dlopen_ext(absolute_path.get(), RTLD_NOW, &extinfo); in Dlopen()
851 dlopen_handle_ = dlopen(absolute_path.get(), RTLD_NOW); in Dlopen()
[all …]