/aosp12/frameworks/av/media/libstagefright/ |
H A D | MediaExtractorFactory.cpp | 109 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 D | C2PlatformStorePluginLoader.cpp | 35 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 D | C2Store.cpp | 745 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 D | rild.c | 117 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 D | C2PlatformStorePluginLoader.h | 92 explicit C2PlatformStorePluginLoader(const char *libPath);
|
/aosp12/build/soong/cc/ |
H A D | vendor_snapshot.go | 404 libPath := m.OutputFile().Path() 405 stem = libPath.Base() 418 ret = append(ret, copyFile(ctx, libPath, snapshotLibOut, fake))
|
H A D | vndk.go | 705 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 D | rsCpuExecutable.cpp | 149 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 D | android_renderscript_RenderScript.cpp | 276 …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 D | PackageInstallerSession.java | 2531 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 D | RenderScript.java | 109 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 D | IncrementalService.cpp | 2006 libFileId, libPath = std::move(targetLibPath), in configureNativeBinaries() 2008 extractZipFile(ifs.lock(), zipFile.get(), entry, libFileId, libPath, makeFileTs); in configureNativeBinaries()
|