Home
last modified time | relevance | path

Searched defs:dexInfo (Results 1 – 6 of 6) sorted by relevance

/art/libartservice/service/java/com/android/server/art/
DSecondaryDexopter.java72 protected boolean isDexoptable(@NonNull DetailedSecondaryDexInfo dexInfo) { in isDexoptable()
77 protected boolean needsToBeShared(@NonNull DetailedSecondaryDexInfo dexInfo) { in needsToBeShared()
82 protected boolean isDexFilePublic(@NonNull DetailedSecondaryDexInfo dexInfo) { in isDexFilePublic()
88 protected List<ProfilePath> getExternalProfiles(@NonNull DetailedSecondaryDexInfo dexInfo) { in getExternalProfiles()
95 protected PermissionSettings getPermissionSettings( in getPermissionSettings()
112 protected List<Abi> getAllAbis(@NonNull DetailedSecondaryDexInfo dexInfo) { in getAllAbis()
118 protected ProfilePath buildRefProfilePath(@NonNull DetailedSecondaryDexInfo dexInfo) { in buildRefProfilePath()
123 protected boolean isAppImageAllowed(@NonNull DetailedSecondaryDexInfo dexInfo) { in isAppImageAllowed()
130 protected OutputProfile buildOutputProfile( in buildOutputProfile()
138 protected List<ProfilePath> getCurProfiles(@NonNull DetailedSecondaryDexInfo dexInfo) { in getCurProfiles()
[all …]
DPrimaryDexopter.java94 protected boolean isDexoptable(@NonNull DetailedPrimaryDexInfo dexInfo) { in isDexoptable()
105 protected boolean needsToBeShared(@NonNull DetailedPrimaryDexInfo dexInfo) { in needsToBeShared()
112 protected boolean isDexFilePublic(@NonNull DetailedPrimaryDexInfo dexInfo) { in isDexFilePublic()
120 protected List<ProfilePath> getExternalProfiles(@NonNull DetailedPrimaryDexInfo dexInfo) { in getExternalProfiles()
126 protected PermissionSettings getPermissionSettings( in getPermissionSettings()
144 protected List<Abi> getAllAbis(@NonNull DetailedPrimaryDexInfo dexInfo) { in getAllAbis()
150 protected ProfilePath buildRefProfilePath(@NonNull DetailedPrimaryDexInfo dexInfo) { in buildRefProfilePath()
155 protected boolean isAppImageAllowed(@NonNull DetailedPrimaryDexInfo dexInfo) { in isAppImageAllowed()
166 protected OutputProfile buildOutputProfile( in buildOutputProfile()
174 protected List<ProfilePath> getCurProfiles(@NonNull DetailedPrimaryDexInfo dexInfo) { in getCurProfiles()
[all …]
DDexopter.java289 @NonNull String targetCompilerFilter, @NonNull DexInfoType dexInfo) { in adjustCompilerFilter()
343 private Pair<ProfilePath, Boolean> getOrInitReferenceProfile(@NonNull DexInfoType dexInfo) in getOrInitReferenceProfile()
351 private ProfilePath initReferenceProfile(@NonNull DexInfoType dexInfo) throws RemoteException { in initReferenceProfile()
357 private DexoptOptions getDexoptOptions( in getDexoptOptions()
495 private DexMetadataPath getDmFile(@NonNull DexInfoType dexInfo) throws RemoteException { in getDmFile()
522 private ProfilePath mergeProfiles(@NonNull DexInfoType dexInfo, in mergeProfiles()
540 private void cleanupCurProfiles(@NonNull DexInfoType dexInfo) throws RemoteException { in cleanupCurProfiles()
555 protected abstract boolean isDexoptable(@NonNull DexInfoType dexInfo); in isDexoptable()
561 protected abstract boolean needsToBeShared(@NonNull DexInfoType dexInfo); in needsToBeShared()
567 protected abstract boolean isDexFilePublic(@NonNull DexInfoType dexInfo); in isDexFilePublic()
[all …]
DPrimaryDexUtils.java226 private static String getParentContextRecursive(@NonNull PrimaryDexInfoBuilder dexInfo) { in getParentContextRecursive()
305 @NonNull PackageState pkgState, @NonNull PrimaryDexInfo dexInfo) { in buildRefProfilePath()
312 @NonNull PrimaryDexInfo dexInfo, int uid, int gid, boolean isPublic) { in buildOutputProfile()
320 @NonNull PackageState pkgState, @NonNull PrimaryDexInfo dexInfo) { in getCurProfiles()
339 public static List<ProfilePath> getExternalProfiles(@NonNull PrimaryDexInfo dexInfo) { in getExternalProfiles()
DArtManagerLocal.java281 DetailedDexInfo dexInfo = pair.first; in getDexoptStatus() local
737 PrimaryDexInfo dexInfo = PrimaryDexUtils.getDexInfoBySplitName(pkg, splitName); in snapshotOrDumpAppProfile() local
753 PrimaryDexUtils.getCurProfiles(mInjector.getUserManager(), pkgState, dexInfo)); in snapshotOrDumpAppProfile() local
926 mInjector.getUserManager(), pkgState, dexInfo)); in cleanup() local
963 @NonNull DetailedDexInfo dexInfo, @NonNull Abi abi, boolean isInDalvikCache) in maybeKeepArtifacts()
/art/libartservice/service/javatests/com/android/server/art/
DArtManagerLocalTest.java1047 var dexInfo = mock(DetailedSecondaryDexInfo.class); in createSecondaryDexInfo() local