Home
last modified time | relevance | path

Searched refs:libraryPath (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/services/audiopolicy/managerdefault/
DEngineLibrary.cpp27 std::shared_ptr<EngineLibrary> EngineLibrary::load(std::string libraryPath) in load() argument
30 return engLib->init(std::move(libraryPath)) ? engLib : nullptr; in load()
38 bool EngineLibrary::init(std::string libraryPath) in init() argument
40 mLibraryHandle = dlopen(libraryPath.c_str(), 0); in init()
42 ALOGE("Could not dlopen %s: %s", libraryPath.c_str(), dlerror()); in init()
49 ALOGE("Could not find engine interface functions in %s", libraryPath.c_str()); in init()
53 ALOGD("Loaded engine from %s", libraryPath.c_str()); in init()
DEngineLibrary.h31 static std::shared_ptr<EngineLibrary> load(std::string libraryPath);
43 bool init(std::string libraryPath);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DFilterFactory.java64 public static void addFilterLibrary(String libraryPath) { in addFilterLibrary() argument
65 if (mLogVerbose) Log.v(TAG, "Adding filter library " + libraryPath); in addFilterLibrary()
67 if (mLibraries.contains(libraryPath)) { in addFilterLibrary()
71 mLibraries.add(libraryPath); in addFilterLibrary()
73 mCurrentClassLoader = new PathClassLoader(libraryPath, mCurrentClassLoader); in addFilterLibrary()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DFilterFactory.java58 public static void addFilterLibrary(String libraryPath) { in addFilterLibrary() argument
59 if (mLogVerbose) Log.v(TAG, "Adding filter library " + libraryPath); in addFilterLibrary()
61 if (mLibraries.contains(libraryPath)) { in addFilterLibrary()
65 mLibraries.add(libraryPath); in addFilterLibrary()
67 mCurrentClassLoader = new PathClassLoader(libraryPath, mCurrentClassLoader); in addFilterLibrary()
/frameworks/base/tests/DynamicCodeLoggerIntegrationTests/src/com/android/server/pm/dex/
DDynamicCodeLoggerIntegrationTests.java166 libraryPath("DynamicCodeLoggerNativeTestLibrary.so"), privateCopyFile); in testGeneratesEvents_nativeLibrary()
184 libraryPath("DynamicCodeLoggerNativeTestLibrary.so"), privateCopyFile); in testGeneratesEvents_nativeLibrary_escapedName()
370 private String libraryPath(final String libraryName) { in libraryPath() method in DynamicCodeLoggerIntegrationTests
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java605 String libraryPath = System.getProperty("java.library.path"); in createPathClassLoader() local
610 return ClassLoaderFactory.createClassLoader(classPath, libraryPath, libraryPath, in createPathClassLoader()
/frameworks/base/core/jni/
Dandroid_app_NativeActivity.cpp275 jbyteArray savedState, jobject classLoader, jstring libraryPath) { in loadNativeCode_native() argument
290 libraryPath, in loadNativeCode_native()
/frameworks/base/core/java/android/app/
DNativeActivity.java93 AssetManager assetMgr, byte[] savedState, ClassLoader classLoader, String libraryPath); in loadNativeCode() argument
/frameworks/base/services/java/com/android/server/
DSystemServer.java515 String libraryPath = jvmtiAgent.substring(0, equalIndex); in run() local
520 Debug.attachJvmtiAgent(libraryPath, parameterList, null); in run()