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

  /art/runtime/
plugin.h 42 return dlopen_handle_ != nullptr;
64 dlopen_handle_(other.dlopen_handle_) {
65 other.dlopen_handle_ = nullptr;
69 explicit Plugin(const std::string& library) : library_(library), dlopen_handle_(nullptr) { }
72 void* dlopen_handle_; member in class:art::Plugin
oat_file.cc 604 dlopen_handle_(nullptr),
609 if (dlopen_handle_ != nullptr) {
612 host_dlopen_handles_.erase(dlopen_handle_);
613 dlclose(dlopen_handle_);
615 dlclose(dlopen_handle_);
624 reinterpret_cast<const uint8_t*>(dlsym(dlopen_handle_, symbol_name.c_str()));
660 void* dlopen_handle_; // TODO: Unique_ptr with custom deleter. member in class:art::FINAL
735 DCHECK(dlopen_handle_ != nullptr || !success);
767 dlopen_handle_ = android_dlopen_ext(absolute_path.get(), RTLD_NOW, &extinfo);
772 dlopen_handle_ = dlopen(absolute_path.get(), RTLD_NOW)
    [all...]
  /art/runtime/ti/
agent.h 50 return dlopen_handle_ != nullptr;
100 void* dlopen_handle_; member in class:art::ti::Agent

Completed in 96 milliseconds