Home | History | Annotate | Download | only in factory

Lines Matching refs:library

44  * @return true if the library is found and set resolvedPath to its absolute path.
58 /** Loads a library given its relative path and stores the result in libEntry.
67 ALOGE("Could not find library in effect directories: %s", relativePath);
78 ALOGE("Could not dlopen library %s: %s", path, dlerror());
85 ALOGE("Invalid effect library, failed not find symbol '%s' in %s: %s",
91 ALOGE("Bad tag %#08x in description structure, expected %#08x for library %s",
99 ALOGE("Unsupported major version %#08x, expected %#08x for library %s",
157 for (auto& library : libs) {
161 libEntry->name = strdup(library.name.c_str());
165 if (!loadLibrary(library.path.c_str(), libEntry.get())) {
166 // Register library load failure
176 /** Find a library with the given name in the given list. */
216 // Find the effect library
217 result.lib = findLibrary(effect.library->name.c_str(), libList);
219 ALOGE("Could not find library %s to load effect %s",
220 effect.library->name.c_str(), name.c_str());
297 // lib_entry_t is stored since the sub effects are not linked to the library