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()
376 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(), in dexOptSecondaryDexPathLI() local
380 int dexoptFlags = getDexFlags(info, compilerFilter, options) | DEXOPT_SECONDARY_DEX; in dexOptSecondaryDexPathLI()
[all …]
DOtaDexoptService.java262 int dexFlags, String compilerFilter, @Nullable String volumeUuid, in generatePackageDexopts()
281 encodeParameter(builder, compilerFilter); in generatePackageDexopts()
DPackageManagerShellCommand.java1125 String compilerFilter = null; in runCompile() local
1144 compilerFilter = getNextArgRequired(); in runCompile()
1180 if (compilerFilter != null && compilationReason != null) { in runCompile()
1185 if (compilerFilter == null && compilationReason == null) { in runCompile()
1202 if (compilerFilter != null) { in runCompile()
1203 if (!DexFile.isValidCompilerFilter(compilerFilter)) { in runCompile()
1204 pw.println("Error: \"" + compilerFilter + in runCompile()
1208 targetCompilerFilter = compilerFilter; in runCompile()
DInstaller.java294 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, in dexopt() argument
302 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade, in dexopt()
DPackageManagerService.java9257 public boolean performDexOptSecondary(String packageName, String compilerFilter,
9263 return performDexOpt(new DexoptOptions(packageName, compilerFilter, flags));
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptOptions.java84 public DexoptOptions(String packageName, String compilerFilter, int flags) { in DexoptOptions() argument
85 this(packageName, /*compilationReason*/ -1, compilerFilter, /*splitName*/ null, flags); in DexoptOptions()
93 public DexoptOptions(String packageName, int compilationReason, String compilerFilter, in DexoptOptions() argument
110 mCompilerFilter = compilerFilter; in DexoptOptions()
/frameworks/base/tests/AppLaunchWear/src/com/android/tests/applaunch/
DAppLaunch.java342 for (String compilerFilter : mCompilerFilters) { in testMeasureStartUpTime()
346 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) { in testMeasureStartUpTime()
356 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter); in testMeasureStartUpTime()
373 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { in compileApp() argument
375 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName)); in compileApp() argument
396 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
399 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH)); in setLaunchOrder()
404 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
411 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
418 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
[all …]
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
DAppLaunch.java353 for (String compilerFilter : mCompilerFilters) { in testMeasureStartUpTime()
357 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) { in testMeasureStartUpTime()
367 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter); in testMeasureStartUpTime()
384 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { in compileApp() argument
386 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName)); in compileApp() argument
407 for (String compilerFilter : mCompilerFilters) { in setLaunchOrder()
410 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH)); in setLaunchOrder()
415 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
422 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, in setLaunchOrder()
429 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.aidl52 @utf8InCpp String compilerFilter, @nullable @utf8InCpp String uuid, in dexopt() argument
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java603 final String compilerFilter = systemServerFilter; in performSystemServerDexOpt() local
611 instructionSet, dexoptNeeded, outputPath, dexFlags, compilerFilter, in performSystemServerDexOpt()
/frameworks/native/cmds/installd/
DInstalldNativeService.h85 const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid,
DInstalldNativeService.cpp1948 const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid, in dexopt() argument
1968 const char* compiler_filter = compilerFilter.c_str(); in dexopt()