Lines Matching refs:libPath
855 c2_status_t init(std::string libPath);
916 ComponentLoader(std::string libPath) in ComponentLoader()
917 : mLibPath(libPath) {} in ComponentLoader()
1058 std::string libPath) { in init() argument
1063 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init()
1065 "could not dlopen %s: %s", libPath.c_str(), dlerror()); in init()
1070 "createFactory is null in %s", libPath.c_str()); in init()
1075 "destroyFactory is null in %s", libPath.c_str()); in init()
1080 ALOGD("could not create factory in %s", libPath.c_str()); in init()
1173 auto emplace = [this](const char *libPath) { in C2PlatformComponentStore() argument
1174 mComponents.emplace(libPath, libPath); in C2PlatformComponentStore()