HomeSort by relevance Sort by last modified time
    Searched refs:dlopen_handle_ (Results 1 - 5 of 5) sorted by null

  /art/runtime/
plugin.h 43 return dlopen_handle_ != nullptr;
65 dlopen_handle_(other.dlopen_handle_) { function in class:art::Plugin
66 other.dlopen_handle_ = nullptr;
70 explicit Plugin(const std::string& library) : library_(library), dlopen_handle_(nullptr) { }
73 void* dlopen_handle_; member in class:art::Plugin
plugin.cc 30 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) {
53 dlopen_handle_ = res;
60 void* handle = dlopen_handle_;
71 dlopen_handle_ = nullptr;
82 return os << "Plugin { library=\"" << m.library_ << "\", handle=" << m.dlopen_handle_ << " }";
oat_file.cc 952 void* dlopen_handle_; \/\/ TODO: Unique_ptr with custom deleter. member in class:art::final
    [all...]
  /art/runtime/ti/
agent.cc 161 CHECK(dlopen_handle_ != nullptr) << "Cannot find symbols in an unloaded agent library " << this;
162 return dlsym(dlopen_handle_, name.c_str());
167 if (dlopen_handle_ != nullptr) {
174 dlopen_handle_ = nullptr;
184 : dlopen_handle_(nullptr),
193 if (dlopen_handle_ != nullptr) {
197 dlopen_handle_ = other.dlopen_handle_;
201 other.dlopen_handle_ = nullptr;
225 if (dlopen_handle_ != nullptr)
    [all...]
agent.h 116 dlopen_handle_(dlopen_handle),
126 void* dlopen_handle_; member in class:art::ti::Agent

Completed in 98 milliseconds