Home
last modified time | relevance | path

Searched refs:libName (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libaudiohal/
DFactoryHalHidl.cpp43 const std::string libName = "libaudiohal@" + version + ".so"; in createHalService() local
48 handle = dlopen(libName.c_str(), dlMode); in createHalService()
51 ALOGE("Failed to dlopen %s: %s", libName.c_str(), in createHalService()
60 factoryFunctionName.c_str(), libName.c_str(), in createHalService()
67 factoryFunctionName.c_str(), libName.c_str()); in createHalService()
/frameworks/av/media/libstagefright/omx/
DSoftOMXPlugin.cpp94 AString libName = "libstagefright_soft_"; in makeComponentInstance() local
95 libName.append(kComponents[i].mLibNameSuffix); in makeComponentInstance()
96 libName.append(".so"); in makeComponentInstance()
112 void *libHandle = dlopen(libName.c_str(), RTLD_NOW|RTLD_NODELETE); in makeComponentInstance()
115 ALOGE("unable to dlopen %s: %s", libName.c_str(), dlerror()); in makeComponentInstance()
/frameworks/native/libs/graphicsenv/
DGraphicsEnv.cpp333 std::string libName = std::string("lib") + name + "_angle.so"; in loadLibrary() local
335 void* so = android_dlopen_ext(libName.c_str(), RTLD_LOCAL | RTLD_NOW, &dlextinfo); in loadLibrary()
338 ALOGD("dlopen_ext from APK (%s) success at %p", libName.c_str(), so); in loadLibrary()
341 ALOGE("dlopen_ext(\"%s\") failed: %s", libName.c_str(), dlerror()); in loadLibrary()
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DNativeProgram.java161 private native boolean openNativeLibrary(String libName); in openNativeLibrary() argument
/frameworks/base/services/incremental/
DIncrementalService.cpp1497 const auto libName = path::basename(fileName); in configureNativeBinaries() local
1498 auto targetLibPath = path::join(targetLibPathRelativeToStorage, libName); in configureNativeBinaries()
1530 LOG(INFO) << "incfs: Extracted " << libName in configureNativeBinaries()
1544 LOG(INFO) << "incfs: Processed " << libName << ": " in configureNativeBinaries()
1590 auto libName = path::basename(targetLibPath); in extractZipFile() local
1597 LOG(ERROR) << "Failed to extract native lib zip entry: " << libName; in extractZipFile()
1636 LOG(INFO) << "incfs: Extracted " << libName << "(" << entry.compressed_length << " -> " in extractZipFile()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageSettingBase.java339 void setOverlayPathsForLibrary(String libName, List<String> overlayPaths, int userId) { in setOverlayPathsForLibrary() argument
340 modifyUserState(userId).setSharedLibraryOverlayPaths(libName, in setOverlayPathsForLibrary()
DSettings.java2285 String libName = parser.getAttributeValue(null, ATTR_NAME); in readUsesStaticLibLPw() local
2295 if (libName != null && libVersion >= 0) { in readUsesStaticLibLPw()
2297 outPs.usesStaticLibraries, libName); in readUsesStaticLibLPw()
2314 final String libName = usesStaticLibraries[i]; in writeUsesStaticLibLPw() local
2317 serializer.attribute(null, ATTR_NAME, libName); in writeUsesStaticLibLPw()