Home
last modified time | relevance | path

Searched refs:libPath (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/
DMediaExtractorFactory.cpp109 String8 libPath; member
113 : def(definition), libHandle(handle), libPath(path) { in ExtractorPlugin()
120 ALOGV("closing handle for %s %d", libPath.c_str(), def.extractor_version); in ~ExtractorPlugin()
240 String8 libPath = String8(libDirPath) + "/" + libEntry->d_name; in RegisterExtractors() local
241 if (!libPath.contains("extractor.so")) { in RegisterExtractors()
245 libPath.c_str(), in RegisterExtractors()
248 ALOGI("dlopen(%s) reported error %s", libPath.c_str(), strerror(errno)); in RegisterExtractors()
255 ALOGI("no sniffer found in %s", libPath.c_str()); in RegisterExtractors()
260 ALOGV("registering sniffer for %s", libPath.c_str()); in RegisterExtractors()
262 new ExtractorPlugin(getDef(), libHandle, libPath), pluginList); in RegisterExtractors()
[all …]
/frameworks/av/media/codec2/vndk/
DC2PlatformStorePluginLoader.cpp35 C2PlatformStorePluginLoader::C2PlatformStorePluginLoader(const char *libPath) in C2PlatformStorePluginLoader() argument
38 mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE); in C2PlatformStorePluginLoader()
40 ALOGD("Failed to load library: %s (%s)", libPath, dlerror()); in C2PlatformStorePluginLoader()
DC2Store.cpp853 c2_status_t init(std::string libPath);
914 ComponentLoader(std::string libPath) in ComponentLoader()
915 : mLibPath(libPath) {} in ComponentLoader()
1056 std::string libPath) { in init() argument
1061 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init()
1063 "could not dlopen %s: %s", libPath.c_str(), dlerror()); in init()
1068 "createFactory is null in %s", libPath.c_str()); in init()
1073 "destroyFactory is null in %s", libPath.c_str()); in init()
1078 ALOGD("could not create factory in %s", libPath.c_str()); in init()
1171 auto emplace = [this](const char *libPath) { in C2PlatformComponentStore() argument
[all …]
/frameworks/av/media/codec2/vndk/include/
DC2PlatformStorePluginLoader.h92 explicit C2PlatformStorePluginLoader(const char *libPath);
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/
DSharedLibrariesImplTest.kt353 val libPath = File(builtinLibPath(BUILTIN_LIB_NAME)) in <lambda>() constant
354 libPath.createNewFile() in <lambda>()
/frameworks/rs/cpu_ref/
DrsCpuExecutable.cpp149 const char *libPath = "--library-path=" SYSLIBPATH; in createSharedLibrary() local
165 compiler_rt, mTriple, vendorLibPath, vndkLibPath, libPath, in createSharedLibrary()
/frameworks/rs/support/jni/
Dandroid_renderscript_RenderScript.cpp276 …boolean nLoadSO(JNIEnv *_env, jobject _this, jboolean useNative, jint targetApi, jstring libPath) { in nLoadSO() argument
282 if (libPath != NULL) { in nLoadSO()
283 const char * libPathJni = _env->GetStringUTFChars(libPath, JNI_FALSE); in nLoadSO()
285 _env->ReleaseStringUTFChars(libPath, libPathJni); in nLoadSO()
2100 static jboolean nIncLoadSO(JNIEnv *_env, jobject _this, jint deviceApi, jstring libPath) { in nIncLoadSO() argument
2103 if (libPath != NULL) { in nIncLoadSO()
2104 const char * libPathJni = _env->GetStringUTFChars(libPath, JNI_FALSE); in nIncLoadSO()
2106 _env->ReleaseStringUTFChars(libPath, libPathJni); in nIncLoadSO()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerSession.java2922 for (String libPath : mResolvedNativeLibPaths) { in prepareInheritedFiles()
2924 final int splitIndex = libPath.lastIndexOf('/'); in prepareInheritedFiles()
2925 if (splitIndex < 0 || splitIndex >= libPath.length() - 1) { in prepareInheritedFiles()
2928 + " to invalid path: " + libPath); in prepareInheritedFiles()
2931 final String libDirPath = libPath.substring(1, splitIndex); in prepareInheritedFiles()
2936 final String archDirPath = libPath.substring(splitIndex + 1); in prepareInheritedFiles()
/frameworks/rs/support/java/src/androidx/renderscript/
DRenderScript.java109 native boolean nLoadSO(boolean useNative, int deviceApi, String libPath); in nLoadSO() argument
993 native boolean nIncLoadSO(int deviceApi, String libPath); in nIncLoadSO() argument
/frameworks/base/services/incremental/
DIncrementalService.cpp2026 libFileId, libPath = std::move(targetLibPath), in configureNativeBinaries()
2028 extractZipFile(ifs.lock(), zipFile.get(), entry, libFileId, libPath, makeFileTs); in configureNativeBinaries()