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.java254 final String compilerFilter = getRealCompilerFilter(pkg, in performDexOptLI() local
260 ? analyseProfiles(pkg, sharedGid, profileName, compilerFilter) in performDexOptLI()
265 final int dexoptFlags = getDexFlags(pkg, pkgSetting, compilerFilter, options); in performDexOptLI()
268 int newResult = dexOptPath(pkg, pkgSetting, path, dexCodeIsa, compilerFilter, in performDexOptLI()
281 compilerFilter, in performDexOptLI()
318 String isa, String compilerFilter, int profileAnalysisResult, String classLoaderContext, in dexOptPath() argument
321 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext, in dexOptPath()
333 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir in dexOptPath()
344 dexoptFlags, compilerFilter, pkg.getVolumeUuid(), classLoaderContext, in dexOptPath()
486 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(), in dexOptSecondaryDexPathLI() local
[all …]
DOtaDexoptService.java292 int dexFlags, String compilerFilter, @Nullable String volumeUuid, in generatePackageDexopts()
311 encodeParameter(builder, compilerFilter); in generatePackageDexopts()
DInstaller.java492 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, in dexopt() argument
503 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade, in dexopt()
DPackageManagerShellCommand.java1672 String compilerFilter = null; in runCompile() local
1692 compilerFilter = getNextArgRequired(); in runCompile()
1731 final boolean compilerFilterGiven = compilerFilter != null; in runCompile()
1756 if (!DexFile.isValidCompilerFilter(compilerFilter)) { in runCompile()
1757 pw.println("Error: \"" + compilerFilter + in runCompile()
1761 targetCompilerFilter = compilerFilter; in runCompile()
DPackageManagerService.java12800 public boolean performDexOptSecondary(String packageName, String compilerFilter, in performDexOptSecondary() argument
12806 return performDexOpt(new DexoptOptions(packageName, compilerFilter, flags)); in performDexOptSecondary()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptOptions.java92 public DexoptOptions(String packageName, String compilerFilter, int flags) { in DexoptOptions() argument
93 this(packageName, /*compilationReason*/ -1, compilerFilter, /*splitName*/ null, flags); in DexoptOptions()
101 public DexoptOptions(String packageName, int compilationReason, String compilerFilter, in DexoptOptions() argument
119 mCompilerFilter = compilerFilter; in DexoptOptions()
DArtStatsLogUtils.java142 String compilerFilter, in writeStatsLog() argument
156 compilerFilter, in writeStatsLog()
166 compilerFilter, in writeStatsLog()
176 compilerFilter, in writeStatsLog()
278 String compilerFilter, in write() argument
288 COMPILE_FILTER_MAP.getOrDefault(compilerFilter, ArtStatsLog. in write()
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
DAppLaunch.java477 for (String compilerFilter : mCompilerFilters) { in testMeasureStartUpTime()
481 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) { in testMeasureStartUpTime()
491 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter); in testMeasureStartUpTime()
508 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { in compileApp() argument
510 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName)); in compileApp() argument
667 private boolean shouldIncludeIorap(String compilerFilter) { in shouldIncludeIorap() argument
678 if (mIorapCompilerFilters.indexOf(compilerFilter) != -1) { in shouldIncludeIorap()
693 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
696 … mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH, /*iorapEnabled*/false)); in setLaunchOrder()
699 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.aidl61 @utf8InCpp String compilerFilter, @nullable @utf8InCpp String uuid, in dexopt() argument
/frameworks/native/cmds/installd/
DInstalldNativeService.h115 const std::string& compilerFilter, const std::optional<std::string>& uuid,
DInstalldNativeService.cpp2399 const std::string& compilerFilter, const std::optional<std::string>& uuid, in dexopt() argument
2424 const char* compiler_filter = compilerFilter.c_str(); in dexopt()