Searched defs:compilerFilter (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/content/pm/dex/
H A DPackageOptimizationInfo.java28 public PackageOptimizationInfo(int compilerFilter, int compilationReason) { argument
30 this.mCompilationFilter = compilerFilter;
/frameworks/base/services/core/java/com/android/server/pm/dex/
H A DDexoptOptions.java84 public DexoptOptions(String packageName, String compilerFilter, int flags) { argument
85 this(packageName, /*compilationReason*/ -1, compilerFilter, /*splitName*/ null, flags);
93 public DexoptOptions(String packageName, int compilationReason, String compilerFilter, argument
110 mCompilerFilter = compilerFilter;
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java227 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
230 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter);
234 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options);
237 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
263 String compilerFilter, boolean profileUpdated, String classLoaderContext,
266 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext,
280 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir
290 compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo,
376 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
380 int dexoptFlags = getDexFlags(info, compilerFilter, option
262 dexOptPath(PackageParser.Package pkg, String path, String isa, String compilerFilter, boolean profileUpdated, String classLoaderContext, int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade, String profileName, String dexMetadataPath, int compilationReason) argument
520 getDexFlags(PackageParser.Package pkg, String compilerFilter, DexoptOptions options) argument
529 getDexFlags(ApplicationInfo info, String compilerFilter, DexoptOptions options) argument
579 getDexoptNeeded(String path, String isa, String compilerFilter, String classLoaderContext, boolean newProfile, boolean downgrade) argument
600 isProfileUpdated(PackageParser.Package pkg, int uid, String profileName, String compilerFilter) argument
[all...]
H A DInstaller.java294 String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries,
302 dexFlags, compilerFilter, volumeUuid, sharedLibraries, seInfo, downgrade,
292 dexopt(String apkPath, int uid, @Nullable String pkgName, String instructionSet, int dexoptNeeded, @Nullable String outputPath, int dexFlags, String compilerFilter, @Nullable String volumeUuid, @Nullable String sharedLibraries, @Nullable String seInfo, boolean downgrade, int targetSdkVersion, @Nullable String profileName, @Nullable String dexMetadataPath, @Nullable String compilationReason) argument
H A DPackageManagerService.java9257 public boolean performDexOptSecondary(String packageName, String compilerFilter, argument
9263 return performDexOpt(new DexoptOptions(packageName, compilerFilter, flags));
[all...]
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
H A DAppLaunch.java353 for (String compilerFilter : mCompilerFilters) {
357 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) {
367 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter);
381 * Compile the app package using compilerFilter and return true or false
384 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { argument
386 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName));
407 for (String compilerFilter : mCompilerFilters) {
410 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH));
415 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter,
688 LaunchOrder(String app, String compilerFilter, String launchReason) argument
[all...]
/frameworks/base/tests/AppLaunchWear/src/com/android/tests/applaunch/
H A DAppLaunch.java342 for (String compilerFilter : mCompilerFilters) {
346 for (AppLaunchResult result : mNameToLaunchTime.get(app).get(compilerFilter)) {
356 String filterName = (compilerFilter == null) ? "" : ("-" + compilerFilter);
370 * Compile the app package using compilerFilter and return true or false
373 private boolean compileApp(String compilerFilter, String appPkgName) throws IOException { argument
375 executeShellCommand(String.format(COMPILE_CMD, compilerFilter, appPkgName));
396 for (String compilerFilter : mCompilerFilters) {
399 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter, TRIAL_LAUNCH));
404 mLaunchOrderList.add(new LaunchOrder(app, compilerFilter,
659 LaunchOrder(String app, String compilerFilter, String launchReason) argument
[all...]
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp1948 const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid,
1968 const char* compiler_filter = compilerFilter.c_str();
1945 dexopt(const std::string& apkPath, int32_t uid, const std::unique_ptr<std::string>& packageName, const std::string& instructionSet, int32_t dexoptNeeded, const std::unique_ptr<std::string>& outputPath, int32_t dexFlags, const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid, const std::unique_ptr<std::string>& classLoaderContext, const std::unique_ptr<std::string>& seInfo, bool downgrade, int32_t targetSdkVersion, const std::unique_ptr<std::string>& profileName, const std::unique_ptr<std::string>& dexMetadataPath, const std::unique_ptr<std::string>& compilationReason) argument

Completed in 192 milliseconds