Home
last modified time | relevance | path

Searched refs:secondaryCpuAbi (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/core/java/android/content/pm/
DInstrumentationInfo.java108 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()
DApplicationInfo.java1187 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/
DPackageAbiHelperImpl.java251 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 …]
DInstructionSets.java38 public static String[] getAppDexInstructionSets(String primaryCpuAbi, String secondaryCpuAbi) { in getAppDexInstructionSets() argument
40 if (secondaryCpuAbi != null) { in getAppDexInstructionSets()
43 VMRuntime.getInstructionSet(secondaryCpuAbi) }; in getAppDexInstructionSets()
DSettings.java1046 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)
DComputerEngine.java1554 ai.secondaryCpuAbi = ps.getSecondaryCpuAbiLegacy(); in generatePackageInfo()
/frameworks/base/core/java/com/android/internal/pm/parsing/pkg/
DParsedPackage.java62 ParsedPackage setSecondaryCpuAbi(String secondaryCpuAbi); in setSecondaryCpuAbi() argument
DPackageImpl.java479 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/
DGraphicsEnvironment.java877 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/
DScanTests.java399 assertThat(applicationInfo.secondaryCpuAbi, nullValue()); in scanFirstBoot_apexDontDeriveAbis()
658 assertThat(applicationInfo.secondaryCpuAbi, is("derivedSecondary"));
DPackageParserTest.java1182 assertEquals(a.secondaryCpuAbi, that.secondaryCpuAbi); in assertApplicationInfoEqual()
DPackageManagerTests.java2965 if (info.secondaryCpuAbi != null) { in getAppDexInstructionSets()
2968 VMRuntime.getInstructionSet(info.secondaryCpuAbi) }; in getAppDexInstructionSets()
/frameworks/base/core/java/com/android/internal/pm/parsing/
DPackageInfoCommonUtils.java329 info.secondaryCpuAbi = AndroidPackageLegacyUtils.getRawSecondaryCpuAbi(pkg); in generateApplicationInfo()
479 info.secondaryCpuAbi = AndroidPackageLegacyUtils.getRawSecondaryCpuAbi(pkg); in generateInstrumentationInfo()
/frameworks/base/core/java/android/app/
DLoadedApk.java201 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()
DActivityThread.java7173 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()
DApplicationPackageManager.java533 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/
DAppWarnings.java241 final String appSecondaryAbi = r.info.applicationInfo.secondaryCpuAbi; in showDeprecatedAbiDialogIfNeeded()
/frameworks/base/services/core/java/com/android/server/pm/parsing/
DPackageInfoUtils.java517 info.secondaryCpuAbi = pkgSetting.getSecondaryCpuAbi(); in generateApplicationInfo()
747 info.secondaryCpuAbi = pkgSetting.getSecondaryCpuAbi(); in generateInstrumentationInfo()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt11327 Landroid/content/pm/InstrumentationInfo;->secondaryCpuAbi:Ljava/lang/String;