Home
last modified time | relevance | path

Searched refs:compilerFilter (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DPackageDexOptimizer.java225 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo, in performDexOptLI() local
228 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter); in performDexOptLI()
232 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options); in performDexOptLI()
235 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter, in performDexOptLI()
261 String compilerFilter, boolean profileUpdated, String classLoaderContext, in dexOptPath() argument
264 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext, in dexOptPath()
275 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir in dexOptPath()
285 compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo, in dexOptPath()
378 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(), in dexOptSecondaryDexPathLI() local
382 int dexoptFlags = getDexFlags(info, compilerFilter, options) | DEXOPT_SECONDARY_DEX; in dexOptSecondaryDexPathLI()
[all …]
DOtaDexoptService.java280 int dexFlags, String compilerFilter, @Nullable String volumeUuid, in generatePackageDexopts()
299 encodeParameter(builder, compilerFilter); in generatePackageDexopts()
DInstaller.java308 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, in dexopt() argument
319 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade, in dexopt()
DPackageManagerShellCommand.java1482 String compilerFilter = null; in runCompile() local
1502 compilerFilter = getNextArgRequired(); in runCompile()
1541 final boolean compilerFilterGiven = compilerFilter != null; in runCompile()
1566 if (!DexFile.isValidCompilerFilter(compilerFilter)) { in runCompile()
1567 pw.println("Error: \"" + compilerFilter + in runCompile()
1571 targetCompilerFilter = compilerFilter; in runCompile()
DPackageManagerService.java9857 public boolean performDexOptSecondary(String packageName, String compilerFilter,
9863 return performDexOpt(new DexoptOptions(packageName, compilerFilter, flags));
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptOptions.java82 public DexoptOptions(String packageName, String compilerFilter, int flags) { in DexoptOptions() argument
83 this(packageName, /*compilationReason*/ -1, compilerFilter, /*splitName*/ null, flags); in DexoptOptions()
91 public DexoptOptions(String packageName, int compilationReason, String compilerFilter, in DexoptOptions() argument
108 mCompilerFilter = compilerFilter; in DexoptOptions()
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
DAppLaunch.java475 for (String compilerFilter : mCompilerFilters) { in testMeasureStartUpTime()
479 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) { in testMeasureStartUpTime()
489 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter); in testMeasureStartUpTime()
506 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { in compileApp() argument
508 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName)); in compileApp() argument
665 private boolean shouldIncludeIorap(String compilerFilter) { in shouldIncludeIorap() argument
676 if (mIorapCompilerFilters.indexOf(compilerFilter) != -1) { in shouldIncludeIorap()
691 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
694 … mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH, /*iorapEnabled*/false)); in setLaunchOrder()
697 if (shouldIncludeIorap(compilerFilter)) { in setLaunchOrder()
[all …]
/frameworks/base/tests/AppLaunchWear/src/com/android/tests/applaunch/
DAppLaunch.java343 for (String compilerFilter : mCompilerFilters) { in testMeasureStartUpTime()
347 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) { in testMeasureStartUpTime()
357 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter); in testMeasureStartUpTime()
374 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { in compileApp() argument
376 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName)); in compileApp() argument
397 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
400 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH)); in setLaunchOrder()
405 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
412 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
419 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
[all …]
/frameworks/base/core/java/android/content/pm/dex/
DPackageOptimizationInfo.java28 public PackageOptimizationInfo(int compilerFilter, int compilationReason) { in PackageOptimizationInfo() argument
30 this.mCompilationFilter = compilerFilter; in PackageOptimizationInfo()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl55 @utf8InCpp String compilerFilter, @nullable @utf8InCpp String uuid, in dexopt() argument
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java655 final String compilerFilter = systemServerFilter; in performSystemServerDexOpt() local
661 instructionSet, dexoptNeeded, outputPath, dexFlags, compilerFilter, in performSystemServerDexOpt()
/frameworks/native/cmds/installd/
DInstalldNativeService.h102 const std::string& compilerFilter, const std::optional<std::string>& uuid,
DInstalldNativeService.cpp2284 const std::string& compilerFilter, const std::optional<std::string>& uuid, in dexopt() argument
2309 const char* compiler_filter = compilerFilter.c_str(); in dexopt()