/aosp12/art/test/688-shared-library/src-art/ |
H A D | Main.java | 50 ClassLoader[] sharedLibraries = { in testOneLibrary() local 56 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 58 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 63 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 65 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 69 ClassLoader[] sharedLibraries = { in testTwoLibraries1() local 75 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1() 77 assertIdentical(sharedLibraries[1], cls.getClassLoader()); in testTwoLibraries1() 82 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1() 84 assertIdentical(sharedLibraries[1], cls.getClassLoader()); in testTwoLibraries1() [all …]
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | ApplicationLoaders.java | 58 List<ClassLoader> sharedLibraries, List<String> nativeSharedLibraries) { in getClassLoaderWithSharedLibraries() argument 76 sharedLibraries); in getSharedLibraryClassLoaderWithSharedLibraries() 143 zip, null, parent, classLoaderName, sharedLibraries); in getClassLoader() 179 ArrayList<ClassLoader> sharedLibraries = null; in createAndCacheNonBootclasspathSystemClassLoader() local 181 sharedLibraries = new ArrayList<ClassLoader>(dependencies.size()); in createAndCacheNonBootclasspathSystemClassLoader() 191 sharedLibraries.add(cached.loader); in createAndCacheNonBootclasspathSystemClassLoader() 208 cached.sharedLibraries = sharedLibraries; in createAndCacheNonBootclasspathSystemClassLoader() 229 String classLoaderName, List<ClassLoader> sharedLibraries) { in getCachedNonBootclasspathSystemLib() argument 245 if (!sharedLibrariesEquals(sharedLibraries, cached.sharedLibraries)) { in getCachedNonBootclasspathSystemLib() 247 + sharedLibraries + "|" + cached.sharedLibraries + ")"); in getCachedNonBootclasspathSystemLib() [all …]
|
H A D | LoadedApk.java | 411 List<SharedLibraryInfo> sharedLibraries, ApplicationInfo aInfo, in appendSharedLibrariesLibPathsIfNeeded() argument 414 if (sharedLibraries == null) { in appendSharedLibrariesLibPathsIfNeeded() 417 for (SharedLibraryInfo lib : sharedLibraries) { in appendSharedLibrariesLibPathsIfNeeded() 703 List<ClassLoader> sharedLibraries = createSharedLibrariesLoaders( in createSharedLibraryLoader() local 714 /* classLoaderName */ null, sharedLibraries); in createSharedLibraryLoader() 717 private List<ClassLoader> createSharedLibrariesLoaders(List<SharedLibraryInfo> sharedLibraries, in createSharedLibrariesLoaders() argument 719 if (sharedLibraries == null) { in createSharedLibrariesLoaders() 723 for (SharedLibraryInfo info : sharedLibraries) { in createSharedLibrariesLoaders() 958 List<ClassLoader> sharedLibraries = createSharedLibrariesLoaders( in createOrUpdateClassLoaderLocked() local 974 mApplicationInfo.classLoaderName, sharedLibraries, nativeSharedLibraries); in createOrUpdateClassLoaderLocked()
|
H A D | ApplicationPackageManager.java | 599 ParceledListSlice<SharedLibraryInfo> sharedLibraries = mPM.getDeclaredSharedLibraries( in getDeclaredSharedLibraries() local 601 return sharedLibraries != null ? sharedLibraries.getList() : Collections.emptyList(); in getDeclaredSharedLibraries()
|
/aosp12/frameworks/base/core/java/com/android/internal/os/ |
H A D | ClassLoaderFactory.java | 83 List<ClassLoader> sharedLibraries) { in createClassLoader() argument 84 ClassLoader[] arrayOfSharedLibraries = (sharedLibraries == null) in createClassLoader() 86 : sharedLibraries.toArray(new ClassLoader[sharedLibraries.size()]); in createClassLoader() 115 List<ClassLoader> sharedLibraries, List<String> nativeSharedLibraries) { in createClassLoader() argument 118 classLoaderName, sharedLibraries); in createClassLoader()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | ApplicationLoadersTest.java | 98 ArrayList<ClassLoader> sharedLibraries = new ArrayList<>(); in testDifferentSharedLibraries() local 99 sharedLibraries.add(dep); in testDifferentSharedLibraries() 104 LIB_A, null, null, sharedLibraries)); in testDifferentSharedLibraries() 121 ArrayList<ClassLoader> sharedLibraries = new ArrayList<>(); in testDependentLibs() local 122 sharedLibraries.add(loadA); in testDependentLibs() 125 LIB_DEP_A, null, null, sharedLibraries)); in testDependentLibs()
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/dex/ |
H A D | DexoptUtils.java | 72 List<SharedLibraryInfo> sharedLibraries, boolean[] pathsWithCode) { in getClassLoaderContexts() argument 75 if (sharedLibraries != null) { in getClassLoaderContexts() 76 sharedLibrariesContext = encodeSharedLibraries(sharedLibraries); in getClassLoaderContexts() 251 private static String encodeSharedLibraries(List<SharedLibraryInfo> sharedLibraries) { in encodeSharedLibraries() argument 254 for (SharedLibraryInfo info : sharedLibraries) { in encodeSharedLibraries() 315 String sharedLibraries) { in encodeClassLoader() argument 316 return encodeClassLoader(classpath, classLoaderName) + sharedLibraries; in encodeClassLoader()
|
/aosp12/build/soong/cc/ |
H A D | fuzz.go | 153 var sharedLibraries android.Paths 163 sharedLibraries = append(sharedLibraries, ccModule.UnstrippedOutputFile()) 171 return sharedLibraries 299 var sharedLibraries android.Paths 307 sharedLibraries = append(sharedLibraries, child.(*Module).UnstrippedOutputFile()) 313 for _, lib := range sharedLibraries { 431 sharedLibraries := collectAllSharedDependencies(ctx, module) 462 for _, library := range sharedLibraries {
|
/aosp12/frameworks/native/services/vr/bufferhubd/ |
H A D | Android.bp | 24 sharedLibraries = [ 51 shared_libs: sharedLibraries, 66 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libbufferhub/ |
H A D | Android.bp | 44 sharedLibraries = [ 68 shared_libs: sharedLibraries, 80 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libperformance/ |
H A D | Android.bp | 31 sharedLibraries = [ 49 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libvrsensor/ |
H A D | Android.bp | 39 sharedLibraries = [ 60 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libbufferhubqueue/ |
H A D | Android.bp | 37 sharedLibraries = [ 67 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libdisplay/ |
H A D | Android.bp | 36 sharedLibraries = [ 72 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libdvrcommon/ |
H A D | Android.bp | 28 sharedLibraries = [ 79 shared_libs: sharedLibraries,
|
/aosp12/frameworks/native/libs/vr/libvrflinger/ |
H A D | Android.bp | 46 sharedLibraries = [ 99 shared_libs: sharedLibraries,
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | OtaDexoptService.java | 293 @Nullable String sharedLibraries, @Nullable String seInfo, boolean downgrade, in generatePackageDexopts() 313 encodeParameter(builder, sharedLibraries); in generatePackageDexopts()
|
H A D | Installer.java | 492 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, in dexopt() argument 503 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade, in dexopt()
|
H A D | PackageDexOptimizer.java | 216 final List<SharedLibraryInfo> sharedLibraries = pkgSetting.getPkgState() in performDexOptLI() local 241 pkg, sharedLibraries, pathsWithCode); in performDexOptLI()
|
/aosp12/frameworks/native/cmds/installd/binder/android/os/ |
H A D | IInstalld.aidl | 62 @nullable @utf8InCpp String sharedLibraries, in dexopt() argument
|
/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/ |
H A D | MockSystem.kt | 272 whenever(mocks.systemConfig.sharedLibraries).thenReturn(DEFAULT_SHARED_LIBRARIES_LIST)
|