Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageDexOptimizer.java333 String compilerFilter = getRealCompilerFilter(pkg, options.getCompilerFilter()); in performDexOptLI() local
336 final boolean useCloudProfile = isProfileGuidedCompilerFilter(compilerFilter) in performDexOptLI()
353 analyseProfiles(pkg, sharedGid, profileName, compilerFilter); in performDexOptLI()
363 compilerFilter = in performDexOptLI()
378 final int dexoptFlags = getDexFlags(pkg, pkgSetting, compilerFilter, in performDexOptLI()
382 int newResult = dexOptPath(pkg, pkgSetting, path, dexCodeIsa, compilerFilter, in performDexOptLI()
394 compilerFilter, in performDexOptLI()
467 String path, String isa, String compilerFilter, int profileAnalysisResult, in dexOptPath() argument
473 int dexoptNeeded = getDexoptNeeded(pkg.getPackageName(), path, isa, compilerFilter, in dexOptPath()
482 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir in dexOptPath()
[all …]
DOtaDexoptService.java300 int dexFlags, String compilerFilter, @Nullable String volumeUuid, in generatePackageDexopts()
325 encodeParameter(builder, compilerFilter); in generatePackageDexopts()
DDexOptHelper.java308 String packageName, String compilerFilter, boolean force) { in performDexOptSecondary() argument
314 compilerFilter, null /* splitName */, flags)); in performDexOptSecondary()
DIPackageManagerBase.java1025 public final boolean performDexOptSecondary(String packageName, String compilerFilter, in performDexOptSecondary() argument
1027 return mDexOptHelper.performDexOptSecondary(packageName, compilerFilter, force); in performDexOptSecondary()
DInstaller.java596 int dexoptNeeded, @Nullable String outputPath, int dexFlags, String compilerFilter, in dexopt() argument
/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/core/java/android/content/pm/dex/
DPackageOptimizationInfo.java28 public PackageOptimizationInfo(int compilerFilter, int compilationReason) { in PackageOptimizationInfo() argument
30 this.mCompilationFilter = compilerFilter; in PackageOptimizationInfo()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptOptions.java95 public DexoptOptions(String packageName, String compilerFilter, int flags) { in DexoptOptions() argument
96 this(packageName, /*compilationReason*/ -1, compilerFilter, /*splitName*/ null, flags); in DexoptOptions()
104 public DexoptOptions(String packageName, int compilationReason, String compilerFilter, in DexoptOptions() argument
121 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/native/cmds/installd/binder/android/os/
DIInstalld.aidl64 @utf8InCpp String compilerFilter, @nullable @utf8InCpp String uuid, in dexopt() argument
/frameworks/native/cmds/installd/
DInstalldNativeService.h139 const std::string& compilerFilter, const std::optional<std::string>& uuid,
DInstalldNativeService.cpp3270 const std::string& compilerFilter, const std::optional<std::string>& uuid, in dexopt() argument
3294 const char* compiler_filter = compilerFilter.c_str(); in dexopt()