Home
last modified time | relevance | path

Searched refs:sharedLibraries (Results 1 – 21 of 21) sorted by relevance

/aosp12/art/test/688-shared-library/src-art/
H A DMain.java50 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 DApplicationLoaders.java58 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 DLoadedApk.java411 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 DApplicationPackageManager.java599 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 DClassLoaderFactory.java83 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 DApplicationLoadersTest.java98 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 DDexoptUtils.java72 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 Dfuzz.go153 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 DAndroid.bp24 sharedLibraries = [
51 shared_libs: sharedLibraries,
66 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libbufferhub/
H A DAndroid.bp44 sharedLibraries = [
68 shared_libs: sharedLibraries,
80 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libperformance/
H A DAndroid.bp31 sharedLibraries = [
49 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libvrsensor/
H A DAndroid.bp39 sharedLibraries = [
60 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libbufferhubqueue/
H A DAndroid.bp37 sharedLibraries = [
67 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libdisplay/
H A DAndroid.bp36 sharedLibraries = [
72 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libdvrcommon/
H A DAndroid.bp28 sharedLibraries = [
79 shared_libs: sharedLibraries,
/aosp12/frameworks/native/libs/vr/libvrflinger/
H A DAndroid.bp46 sharedLibraries = [
99 shared_libs: sharedLibraries,
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DOtaDexoptService.java293 @Nullable String sharedLibraries, @Nullable String seInfo, boolean downgrade, in generatePackageDexopts()
313 encodeParameter(builder, sharedLibraries); in generatePackageDexopts()
H A DInstaller.java492 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, in dexopt() argument
503 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade, in dexopt()
H A DPackageDexOptimizer.java216 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 DIInstalld.aidl62 @nullable @utf8InCpp String sharedLibraries, in dexopt() argument
/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/
H A DMockSystem.kt272 whenever(mocks.systemConfig.sharedLibraries).thenReturn(DEFAULT_SHARED_LIBRARIES_LIST)