Home
last modified time | relevance | path

Searched refs:library_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dplugin.h47 return library_; in GetLibrary()
64 : library_(other.library_), in Plugin()
70 explicit Plugin(const std::string& library) : library_(library), dlopen_handle_(nullptr) { } in Plugin()
72 std::string library_; variable
Dplugin.cc33 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) { in Plugin()
40 void* res = dlopen(library_.c_str(), RTLD_LAZY); in Load()
87 return os << "Plugin { library=\"" << m.library_ << "\", handle=" << m.dlopen_handle_ << " }"; in operator <<()