Home
last modified time | relevance | path

Searched refs:compileLayouts (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/pm/dex/
H A DViewCompiler.java40 public boolean compileLayouts(AndroidPackage pkg) { in compileLayouts() method in ViewCompiler
52 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
H A DArtManagerService.java486 public boolean compileLayouts(AndroidPackage pkg) { in compileLayouts() method in ArtManagerService
507 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
/aosp12/frameworks/native/cmds/installd/binder/android/os/
H A DIInstalld.aidl67 boolean compileLayouts(@utf8InCpp String apkPath, @utf8InCpp String packageName, in compileLayouts() method
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java1677 boolean compileLayouts = false; in runCompile()
1698 compileLayouts = true; in runCompile()
1734 if ((!compilerFilterGiven && !compilationReasonGiven && !compileLayouts) in runCompile()
1735 || (!compilerFilterGiven && compilationReasonGiven && compileLayouts) in runCompile()
1736 || (compilerFilterGiven && !compilationReasonGiven && compileLayouts) in runCompile()
1737 || (compilerFilterGiven && compilationReasonGiven && !compileLayouts) in runCompile()
1738 || (compilerFilterGiven && compilationReasonGiven && compileLayouts)) { in runCompile()
1806 if (compileLayouts) { in runCompile()
1809 result = internal.compileLayouts(packageName); in runCompile()
H A DInstaller.java936 public boolean compileLayouts(String apkPath, String packageName, String outDexFile, int uid) { in compileLayouts() method in Installer
938 return mInstalld.compileLayouts(apkPath, packageName, outDexFile, uid); in compileLayouts()
H A DPackageManagerService.java12776 mArtManagerService.compileLayouts(pkg); in performDexOptUpgrade()
20207 mViewCompiler.compileLayouts(pkg); in executePostCommitSteps()
28042 public boolean compileLayouts(String packageName) {
28050 return mArtManagerService.compileLayouts(pkg);
/aosp12/frameworks/native/cmds/installd/
H A DInstalldNativeService.h122 binder::Status compileLayouts(const std::string& apkPath, const std::string& packageName,
H A DInstalldNativeService.cpp2451 binder::Status InstalldNativeService::compileLayouts(const std::string& apkPath, in compileLayouts() function in android::installd::InstalldNativeService
/aosp12/frameworks/base/services/core/java/android/content/pm/
H A DPackageManagerInternal.java892 public abstract boolean compileLayouts(String packageName); in compileLayouts() method in PackageManagerInternal