Home
last modified time | relevance | path

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

/packages/modules/Virtualization/launcher/
Dmain.cpp48 static Result<void*> load(const std::string& libname);
66 const char* libname = argv[1]; in main() local
67 auto handle = load(libname); in main()
69 LOG(ERROR) << "Failed to load " << libname << ": " << handle.error().message(); in main()
85 Result<void*> load(const std::string& libname) { in load() argument
91 const std::string libdir = libname.substr(0, libname.find_last_of("/")); in load()
115 if (auto ret = android_dlopen_ext(libname.c_str(), RTLD_NOW, &info); ret) { in load()