Lines Matching refs:libPath
745 c2_status_t init(std::string libPath);
806 ComponentLoader(std::string libPath) in ComponentLoader()
807 : mLibPath(libPath) {} in ComponentLoader()
948 std::string libPath) { in init() argument
953 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init()
955 "could not dlopen %s: %s", libPath.c_str(), dlerror()); in init()
960 "createFactory is null in %s", libPath.c_str()); in init()
965 "destroyFactory is null in %s", libPath.c_str()); in init()
970 ALOGD("could not create factory in %s", libPath.c_str()); in init()
1063 auto emplace = [this](const char *libPath) { in C2PlatformComponentStore() argument
1064 mComponents.emplace(libPath, libPath); in C2PlatformComponentStore()