Home | History | Annotate | Download | only in vndk

Lines Matching refs:libPath

514          * \param libPath[in] library path (or name)
523 c2_status_t init(std::string libPath);
578 ComponentLoader(std::string libPath)
579 : mLibPath(libPath) {}
642 c2_status_t C2PlatformComponentStore::ComponentModule::init(std::string libPath) {
645 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE);
648 ALOGD("could not dlopen %s: %s", libPath.c_str(), dlerror());
658 ALOGD("could not create factory in %s", libPath.c_str());