Searched defs:libPath (Results 1 - 4 of 4) sorted by relevance

/hardware/google/av/codec2/vndk/
H A DC2PlatformStorePluginLoader.cpp29 C2PlatformStorePluginLoader::C2PlatformStorePluginLoader(const char *libPath) argument
31 mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE);
33 ALOGD("Failed to load library: %s (%s)", libPath, dlerror());
H A DC2Store.cpp514 * \param libPath[in] library path (or name)
523 c2_status_t init(std::string libPath);
578 ComponentLoader(std::string libPath) argument
579 : mLibPath(libPath) {}
642 c2_status_t C2PlatformComponentStore::ComponentModule::init(std::string libPath) { argument
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());
/hardware/ril/rild/
H A Drild.c117 char libPath[PROPERTY_VALUE_MAX]; local
157 if ( 0 == property_get(LIB_PATH_PROPERTY, libPath, NULL)) {
162 rilLibPath = libPath;
/hardware/google/av/media/v4l2store/
H A DC2VDAComponentStore.cpp76 c2_status_t init(std::string libPath, C2VDACodec codec);
108 ComponentLoader(std::string libPath, C2VDACodec codec) : mLibPath(libPath), mCodec(codec) {} argument
150 c2_status_t C2VDAComponentStore::ComponentModule::init(std::string libPath, C2VDACodec codec) { argument
153 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW | RTLD_NODELETE);
155 ALOGD("could not dlopen %s: %s", libPath.c_str(), dlerror());
184 ALOGD("could not create factory in %s", libPath.c_str());

Completed in 145 milliseconds