Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/dex/
DViewCompiler.java36 public boolean compileLayouts(PackageParser.Package pkg) { in compileLayouts() method in ViewCompiler
47 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
DArtManagerService.java477 public boolean compileLayouts(PackageParser.Package pkg) { in compileLayouts() method in ArtManagerService
497 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommand.java1325 boolean compileLayouts = false; in runCompile()
1346 compileLayouts = true; in runCompile()
1382 if ((!compilerFilterGiven && !compilationReasonGiven && !compileLayouts) in runCompile()
1383 || (!compilerFilterGiven && compilationReasonGiven && compileLayouts) in runCompile()
1384 || (compilerFilterGiven && !compilationReasonGiven && compileLayouts) in runCompile()
1385 || (compilerFilterGiven && compilationReasonGiven && !compileLayouts) in runCompile()
1386 || (compilerFilterGiven && compilationReasonGiven && compileLayouts)) { in runCompile()
1454 if (compileLayouts) { in runCompile()
1457 result = internal.compileLayouts(packageName); in runCompile()
DInstaller.java721 public boolean compileLayouts(String apkPath, String packageName, String outDexFile, int uid) { in compileLayouts() method in Installer
723 return mInstalld.compileLayouts(apkPath, packageName, outDexFile, uid); in compileLayouts()
DPackageManagerService.java9783 mArtManagerService.compileLayouts(pkg);
9934 public boolean compileLayouts(String packageName) {
9942 return mViewCompiler.compileLayouts(pkg);
17133 mViewCompiler.compileLayouts(pkg);
24893 public boolean compileLayouts(String packageName) {
24901 return mArtManagerService.compileLayouts(pkg);
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl58 boolean compileLayouts(@utf8InCpp String apkPath, @utf8InCpp String packageName, in compileLayouts() method
/frameworks/base/core/java/android/content/pm/
DPackageManagerInternal.java924 public abstract boolean compileLayouts(String packageName); in compileLayouts() method in PackageManagerInternal
DIPackageManager.aidl599 boolean compileLayouts(String packageName); in compileLayouts() method
/frameworks/native/cmds/installd/
DInstalldNativeService.h102 binder::Status compileLayouts(const std::string& apkPath, const std::string& packageName,
DInstalldNativeService.cpp2128 binder::Status InstalldNativeService::compileLayouts(const std::string& apkPath, in compileLayouts() function in android::installd::InstalldNativeService