Home
last modified time | relevance | path

Searched refs:usesLibraryInfos (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/pkg/
DPackageStateUnserialized.java49 private List<SharedLibraryInfo> usesLibraryInfos = emptyList(); field in PackageStateUnserialized
101 if (!other.usesLibraryInfos.isEmpty()) { in updateFrom()
102 this.usesLibraryInfos = new ArrayList<>(other.usesLibraryInfos); in updateFrom()
140 return usesLibraryInfos; in getUsesLibraryInfos()
180 usesLibraryInfos = value; in setUsesLibraryInfos()
182 NonNull.class, null, usesLibraryInfos); in setUsesLibraryInfos()
/frameworks/base/services/core/java/com/android/server/pm/parsing/
DPackageInfoUtils.java232 List<SharedLibraryInfo> usesLibraryInfos = pkgState.getUsesLibraryInfos(); in generateApplicationInfo() local
235 info.sharedLibraryInfos = usesLibraryInfos.isEmpty() ? null : usesLibraryInfos; in generateApplicationInfo()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java13378 ArrayList<SharedLibraryInfo> usesLibraryInfos = null; in collectSharedLibraryInfos() local
13380 usesLibraryInfos = collectSharedLibraryInfos(pkg.getUsesLibraries(), null, null, in collectSharedLibraryInfos()
13385 usesLibraryInfos = collectSharedLibraryInfos(pkg.getUsesStaticLibraries(), in collectSharedLibraryInfos()
13387 pkg.getPackageName(), true, pkg.getTargetSdkVersion(), usesLibraryInfos, in collectSharedLibraryInfos()
13391 usesLibraryInfos = collectSharedLibraryInfos(pkg.getUsesOptionalLibraries(), in collectSharedLibraryInfos()
13393 usesLibraryInfos, availablePackages, existingLibraries, newLibraries); in collectSharedLibraryInfos()
13398 usesLibraryInfos = collectSharedLibraryInfos(pkg.getUsesNativeLibraries(), null, in collectSharedLibraryInfos()
13400 usesLibraryInfos, availablePackages, existingLibraries, newLibraries); in collectSharedLibraryInfos()
13403 usesLibraryInfos = collectSharedLibraryInfos(pkg.getUsesOptionalNativeLibraries(), in collectSharedLibraryInfos()
13405 usesLibraryInfos, availablePackages, existingLibraries, newLibraries); in collectSharedLibraryInfos()
[all …]
/frameworks/base/core/java/android/content/pm/
DPackageParser.java6792 public ArrayList<SharedLibraryInfo> usesLibraryInfos = null; field in PackageParser.Package
7333 usesLibraryInfos = dest.createTypedArrayList(SharedLibraryInfo.CREATOR); in Package()
7487 dest.writeTypedList(usesLibraryInfos); in writeToParcel()
7961 && p.usesLibraryInfos != null) { in copyNeeded()
8060 ai.sharedLibraryInfos = p.usesLibraryInfos; in generateApplicationInfo()