Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libstagefright/
H A 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.string(), in RegisterExtractors()
248 ALOGI("dlopen(%s) reported error %s", libPath.string(), strerror(errno)); in RegisterExtractors()
255 ALOGI("no sniffer found in %s", libPath.string()); in RegisterExtractors()
260 ALOGV("registering sniffer for %s", libPath.string()); in RegisterExtractors()
262 new ExtractorPlugin(getDef(), libHandle, libPath), pluginList); in RegisterExtractors()
[all …]
/aosp12/frameworks/av/media/codec2/vndk/
H A 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()
H A DC2Store.cpp745 c2_status_t init(std::string libPath);
806 ComponentLoader(std::string libPath) in ComponentLoader()
807 : mLibPath(libPath) {} in ComponentLoader()
948 std::string libPath) { in init() argument
953 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init()
955 "could not dlopen %s: %s", libPath.c_str(), dlerror()); in init()
960 "createFactory is null in %s", libPath.c_str()); in init()
965 "destroyFactory is null in %s", libPath.c_str()); in init()
970 ALOGD("could not create factory in %s", libPath.c_str()); in init()
1063 auto emplace = [this](const char *libPath) { in C2PlatformComponentStore() argument
[all …]
/aosp12/hardware/ril/rild/
H A Drild.c117 char libPath[PROPERTY_VALUE_MAX]; in main() local
157 if ( 0 == property_get(LIB_PATH_PROPERTY, libPath, NULL)) { in main()
162 rilLibPath = libPath; in main()
/aosp12/frameworks/av/media/codec2/vndk/include/
H A DC2PlatformStorePluginLoader.h92 explicit C2PlatformStorePluginLoader(const char *libPath);
/aosp12/build/soong/cc/
H A Dvendor_snapshot.go404 libPath := m.OutputFile().Path()
405 stem = libPath.Base()
418 ret = append(ret, copyFile(ctx, libPath, snapshotLibOut, fake))
H A Dvndk.go705 libPath := m.outputFile.Path()
706 snapshotLibOut := filepath.Join(snapshotArchDir, targetArch, "shared", vndkType, libPath.Base())
707 ret = append(ret, copyFileRule(ctx, libPath, snapshotLibOut))
/aosp12/frameworks/rs/cpu_ref/
H A DrsCpuExecutable.cpp149 const char *libPath = "--library-path=" SYSLIBPATH; in createSharedLibrary() local
165 compiler_rt, mTriple, vendorLibPath, vndkLibPath, libPath, in createSharedLibrary()
/aosp12/frameworks/rs/support/jni/
H A 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()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java2531 for (String libPath : mResolvedNativeLibPaths) { in parseApkLite()
2533 final int splitIndex = libPath.lastIndexOf('/'); in parseApkLite()
2534 if (splitIndex < 0 || splitIndex >= libPath.length() - 1) { in parseApkLite()
2537 + " to invalid path: " + libPath); in parseApkLite()
2540 final String libDirPath = libPath.substring(1, splitIndex); in parseApkLite()
2545 final String archDirPath = libPath.substring(splitIndex + 1); in parseApkLite()
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/
H A 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
/aosp12/frameworks/base/services/incremental/
H A DIncrementalService.cpp2006 libFileId, libPath = std::move(targetLibPath), in configureNativeBinaries()
2008 extractZipFile(ifs.lock(), zipFile.get(), entry, libFileId, libPath, makeFileTs); in configureNativeBinaries()