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.java227 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo, in performDexOptLI() local
230 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter); in performDexOptLI()
234 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options); in performDexOptLI()
237 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter, in performDexOptLI()
263 String compilerFilter, boolean profileUpdated, String classLoaderContext, in dexOptPath() argument
266 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext, in dexOptPath()
280 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir in dexOptPath()
290 compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo, in dexOptPath()
383 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(), in dexOptSecondaryDexPathLI() local
387 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.java305 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, in dexopt() argument
316 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade, in dexopt()
DPackageManagerShellCommand.java1320 String compilerFilter = null; in runCompile() local
1340 compilerFilter = getNextArgRequired(); in runCompile()
1379 final boolean compilerFilterGiven = compilerFilter != null; in runCompile()
1404 if (!DexFile.isValidCompilerFilter(compilerFilter)) { in runCompile()
1405 pw.println("Error: \"" + compilerFilter + in runCompile()
1409 targetCompilerFilter = compilerFilter; in runCompile()
DPackageManagerService.java9921 public boolean performDexOptSecondary(String packageName, String compilerFilter,
9927 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/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/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/tests/AppLaunch/src/com/android/tests/applaunch/
DAppLaunch.java394 for (String compilerFilter : mCompilerFilters) { in testMeasureStartUpTime()
398 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) { in testMeasureStartUpTime()
408 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter); in testMeasureStartUpTime()
425 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { in compileApp() argument
427 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName)); in compileApp() argument
448 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
451 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH)); in setLaunchOrder()
456 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
463 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
470 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
[all …]
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl52 @utf8InCpp String compilerFilter, @nullable @utf8InCpp String uuid, in dexopt() argument
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java666 final String compilerFilter = systemServerFilter; in performSystemServerDexOpt() local
674 instructionSet, dexoptNeeded, outputPath, dexFlags, compilerFilter, in performSystemServerDexOpt()
/frameworks/native/cmds/installd/
DInstalldNativeService.h95 const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid,
DInstalldNativeService.cpp2094 const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid, in dexopt() argument
2114 const char* compiler_filter = compilerFilter.c_str(); in dexopt()