Home | History | Annotate | Download | only in runtime

Lines Matching refs:Plugin

17 #include "plugin.h"
32 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) {
39 bool Plugin::Load(/*out*/std::string* error_msg) {
52 *error_msg = StringPrintf("Initialization of plugin failed");
62 bool Plugin::Unload() {
84 std::ostream& operator<<(std::ostream &os, const Plugin* m) {
88 std::ostream& operator<<(std::ostream &os, Plugin const& m) {
89 return os << "Plugin { library=\"" << m.library_ << "\", handle=" << m.dlopen_handle_ << " }";