Searched defs:libEntry (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libeffects/factory/
H A DEffectsXmlConfigLoader.cpp58 /** Loads a library given its relative path and stores the result in libEntry.
59 * @return true on success with libEntry's path, handle and desc filled
60 * false on success with libEntry's path filled with the path of the failed lib
63 bool loadLibrary(const char* relativePath, lib_entry_t* libEntry) noexcept {
68 libEntry->path = strdup(relativePath);
72 libEntry->path = strdup(path);
104 libEntry->handle = libHandle.release();
105 libEntry->desc = description;
160 auto libEntry = makeUniqueC<lib_entry_t>(); local
161 libEntry
[all...]
/frameworks/av/media/libstagefright/
H A DMediaExtractorFactory.cpp268 struct dirent* libEntry; local
269 while ((libEntry = readdir(libDir))) {
270 String8 libPath = String8(libDirPath) + "/" + libEntry->d_name;

Completed in 204 milliseconds