/frameworks/av/media/libstagefright/ |
D | MediaExtractorFactory.cpp | 105 String8 libPath; member 109 : def(definition), libHandle(handle), libPath(path) { in ExtractorPlugin() 116 ALOGV("closing handle for %s %d", libPath.c_str(), def.extractor_version); in ~ExtractorPlugin() 236 String8 libPath = String8(libDirPath) + "/" + libEntry->d_name; in RegisterExtractors() local 237 if (!libPath.contains("extractor.so")) { in RegisterExtractors() 241 libPath.string(), in RegisterExtractors() 244 << "couldn't dlopen(" << libPath.string() << ") " << strerror(errno); in RegisterExtractors() 249 << libPath.string() << " does not contain sniffer"; in RegisterExtractors() 251 ALOGV("registering sniffer for %s", libPath.string()); in RegisterExtractors() 253 new ExtractorPlugin(getDef(), libHandle, libPath), pluginList); in RegisterExtractors() [all …]
|
D | StagefrightPluginLoader.cpp | 37 StagefrightPluginLoader::StagefrightPluginLoader(const char *libPath) { in StagefrightPluginLoader() argument 42 mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE); in StagefrightPluginLoader() 44 ALOGD("Failed to load library: %s (%s)", libPath, dlerror()); in StagefrightPluginLoader()
|
D | StagefrightPluginLoader.h | 38 explicit StagefrightPluginLoader(const char *libPath);
|
/frameworks/av/media/codec2/vndk/ |
D | C2PlatformStorePluginLoader.cpp | 35 C2PlatformStorePluginLoader::C2PlatformStorePluginLoader(const char *libPath) in C2PlatformStorePluginLoader() argument 37 mLibHandle = dlopen(libPath, RTLD_NOW | RTLD_NODELETE); in C2PlatformStorePluginLoader() 39 ALOGD("Failed to load library: %s (%s)", libPath, dlerror()); in C2PlatformStorePluginLoader()
|
D | C2Store.cpp | 533 c2_status_t init(std::string libPath); 588 ComponentLoader(std::string libPath) in ComponentLoader() 589 : mLibPath(libPath) {} in ComponentLoader() 688 std::string libPath) { in init() argument 691 mLibHandle = dlopen(libPath.c_str(), RTLD_NOW|RTLD_NODELETE); in init() 693 "could not dlopen %s: %s", libPath.c_str(), dlerror()); in init() 698 "createFactory is null in %s", libPath.c_str()); in init() 703 "destroyFactory is null in %s", libPath.c_str()); in init() 707 ALOGD("could not create factory in %s", libPath.c_str()); in init() 868 auto emplace = [this](const char *libPath) { in C2PlatformComponentStore() argument [all …]
|
/frameworks/av/media/codec2/vndk/include/ |
D | C2PlatformStorePluginLoader.h | 88 explicit C2PlatformStorePluginLoader(const char *libPath);
|
/frameworks/rs/cpu_ref/ |
D | rsCpuExecutable.cpp | 149 const char *libPath = "--library-path=" SYSLIBPATH; in createSharedLibrary() local 165 compiler_rt, mTriple, vendorLibPath, vndkLibPath, libPath, in createSharedLibrary()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageInstallerSession.java | 1351 for (String libPath : mResolvedNativeLibPaths) { in makeSessionActiveLocked() 1353 final int splitIndex = libPath.lastIndexOf('/'); in makeSessionActiveLocked() 1354 if (splitIndex < 0 || splitIndex >= libPath.length() - 1) { in makeSessionActiveLocked() 1357 + " to invalid path: " + libPath); in makeSessionActiveLocked() 1360 final String libDirPath = libPath.substring(1, splitIndex); in makeSessionActiveLocked() 1365 final String archDirPath = libPath.substring(splitIndex + 1); in makeSessionActiveLocked()
|
/frameworks/rs/support/jni/ |
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()
|
/frameworks/rs/support/java/src/androidx/renderscript/ |
D | RenderScript.java | 104 native boolean nLoadSO(boolean useNative, int deviceApi, String libPath); in nLoadSO() argument 988 native boolean nIncLoadSO(int deviceApi, String libPath); in nIncLoadSO() argument
|