/frameworks/base/core/java/android/content/pm/ |
D | InstrumentationInfo.java | 108 public String secondaryCpuAbi; field in InstrumentationInfo 141 secondaryCpuAbi = orig.secondaryCpuAbi; in InstrumentationInfo() 172 dest.writeString8(secondaryCpuAbi); in writeToParcel() 204 secondaryCpuAbi = source.readString8(); in InstrumentationInfo() 224 ai.secondaryCpuAbi = secondaryCpuAbi; in copyTo()
|
D | ApplicationInfo.java | 1187 public String secondaryCpuAbi; field in ApplicationInfo 1975 secondaryCpuAbi = orig.secondaryCpuAbi; in ApplicationInfo() 2069 dest.writeString8(secondaryCpuAbi); in writeToParcel() 2172 secondaryCpuAbi = source.readString8(); in ApplicationInfo()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageAbiHelperImpl.java | 251 final String secondaryCpuAbi; in getBundledAppAbi() local 282 secondaryCpuAbi = null; in getBundledAppAbi() 288 secondaryCpuAbi = null; in getBundledAppAbi() 304 secondaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0]; in getBundledAppAbi() 307 secondaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0]; in getBundledAppAbi() 311 secondaryCpuAbi = null; in getBundledAppAbi() 313 return new Abis(primaryCpuAbi, secondaryCpuAbi); in getBundledAppAbi() 370 String secondaryCpuAbi = null; in derivePackageAbi() local 385 secondaryCpuAbi = null; in derivePackageAbi() 459 secondaryCpuAbi = primaryCpuAbi; in derivePackageAbi() [all …]
|
D | InstructionSets.java | 38 public static String[] getAppDexInstructionSets(String primaryCpuAbi, String secondaryCpuAbi) { in getAppDexInstructionSets() argument 40 if (secondaryCpuAbi != null) { in getAppDexInstructionSets() 43 VMRuntime.getInstructionSet(secondaryCpuAbi) }; in getAppDexInstructionSets()
|
D | Settings.java | 1046 String secondaryCpuAbi, long versionCode, int pkgFlags, int pkgPrivateFlags, 1061 .setSecondaryCpuAbi(secondaryCpuAbi) 1091 .setSecondaryCpuAbi(secondaryCpuAbi) 1206 @Nullable String primaryCpuAbi, @Nullable String secondaryCpuAbi, int pkgFlags, 1268 .setSecondaryCpuAbi(secondaryCpuAbi)
|
D | ComputerEngine.java | 1554 ai.secondaryCpuAbi = ps.getSecondaryCpuAbiLegacy(); in generatePackageInfo()
|
/frameworks/base/core/java/com/android/internal/pm/parsing/pkg/ |
D | ParsedPackage.java | 62 ParsedPackage setSecondaryCpuAbi(String secondaryCpuAbi); in setSecondaryCpuAbi() argument
|
D | PackageImpl.java | 479 protected String secondaryCpuAbi; field in PackageImpl 3014 public PackageImpl setSecondaryCpuAbi(@Nullable String secondaryCpuAbi) { 3015 this.secondaryCpuAbi = TextUtils.safeIntern(secondaryCpuAbi); 3106 appInfo.secondaryCpuAbi = secondaryCpuAbi; 3261 sForInternedString.parcel(this.secondaryCpuAbi, dest, flags); 3428 this.secondaryCpuAbi = sForInternedString.unparcel(in); 3491 return secondaryCpuAbi;
|
/frameworks/base/core/java/android/os/ |
D | GraphicsEnvironment.java | 877 if (ai.secondaryCpuAbi != null && in chooseAbi() 878 isa.equals(VMRuntime.getInstructionSet(ai.secondaryCpuAbi))) { in chooseAbi() 879 return ai.secondaryCpuAbi; in chooseAbi()
|
/frameworks/base/services/tests/PackageManagerServiceTests/server/src/com/android/server/pm/ |
D | ScanTests.java | 399 assertThat(applicationInfo.secondaryCpuAbi, nullValue()); in scanFirstBoot_apexDontDeriveAbis() 658 assertThat(applicationInfo.secondaryCpuAbi, is("derivedSecondary"));
|
D | PackageParserTest.java | 1182 assertEquals(a.secondaryCpuAbi, that.secondaryCpuAbi); in assertApplicationInfoEqual()
|
D | PackageManagerTests.java | 2965 if (info.secondaryCpuAbi != null) { in getAppDexInstructionSets() 2968 VMRuntime.getInstructionSet(info.secondaryCpuAbi) }; in getAppDexInstructionSets()
|
/frameworks/base/core/java/com/android/internal/pm/parsing/ |
D | PackageInfoCommonUtils.java | 329 info.secondaryCpuAbi = AndroidPackageLegacyUtils.getRawSecondaryCpuAbi(pkg); in generateApplicationInfo() 479 info.secondaryCpuAbi = AndroidPackageLegacyUtils.getRawSecondaryCpuAbi(pkg); in generateInstrumentationInfo()
|
/frameworks/base/core/java/android/app/ |
D | LoadedApk.java | 201 if (info.primaryCpuAbi != null && info.secondaryCpuAbi != null) { in adjustNativeLibraryPaths() 206 String secondaryIsa = VMRuntime.getInstructionSet(info.secondaryCpuAbi); in adjustNativeLibraryPaths() 216 modified.primaryCpuAbi = modified.secondaryCpuAbi; in adjustNativeLibraryPaths()
|
D | ActivityThread.java | 7173 if (appInfo.primaryCpuAbi != null && appInfo.secondaryCpuAbi != null in getInstrumentationLibrary() 7174 && appInfo.secondaryCpuAbi.equals(insInfo.secondaryCpuAbi)) { in getInstrumentationLibrary() 7178 VMRuntime.getInstructionSet(appInfo.secondaryCpuAbi); in getInstrumentationLibrary() 7692 || !Objects.equals(data.appInfo.secondaryCpuAbi, ii.secondaryCpuAbi)) { in prepareInstrumentation() 7695 + data.appInfo.primaryCpuAbi + ", " + data.appInfo.secondaryCpuAbi in prepareInstrumentation() 7697 + ii.primaryCpuAbi + ", " + ii.secondaryCpuAbi); in prepareInstrumentation()
|
D | ApplicationPackageManager.java | 533 if (info.primaryCpuAbi != null && info.secondaryCpuAbi != null) { in maybeAdjustApplicationInfo() 538 String secondaryIsa = VMRuntime.getInstructionSet(info.secondaryCpuAbi); in maybeAdjustApplicationInfo()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppWarnings.java | 241 final String appSecondaryAbi = r.info.applicationInfo.secondaryCpuAbi; in showDeprecatedAbiDialogIfNeeded()
|
/frameworks/base/services/core/java/com/android/server/pm/parsing/ |
D | PackageInfoUtils.java | 517 info.secondaryCpuAbi = pkgSetting.getSecondaryCpuAbi(); in generateApplicationInfo() 747 info.secondaryCpuAbi = pkgSetting.getSecondaryCpuAbi(); in generateInstrumentationInfo()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 11327 Landroid/content/pm/InstrumentationInfo;->secondaryCpuAbi:Ljava/lang/String;
|