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 971 void* dlopen_handle_; \/\/ TODO: Unique_ptr with custom deleter. member in class:art::FINAL
    [all...]
  /art/runtime/ti/
agent.cc 155 CHECK(dlopen_handle_ != nullptr) << "Cannot find symbols in an unloaded agent library " << this;
156 return dlsym(dlopen_handle_, name.c_str());
161 if (dlopen_handle_ != nullptr) {
168 dlopen_handle_ = nullptr;
178 : dlopen_handle_(nullptr),
187 if (dlopen_handle_ != nullptr) {
191 dlopen_handle_ = other.dlopen_handle_;
195 other.dlopen_handle_ = nullptr;
219 if (dlopen_handle_ != nullptr)
    [all...]
agent.h 115 dlopen_handle_(dlopen_handle),
125 void* dlopen_handle_; member in class:art::ti::Agent

Completed in 84 milliseconds