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.java481 public boolean compileLayouts(PackageParser.Package pkg) { in compileLayouts() method in ArtManagerService
501 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommand.java1487 boolean compileLayouts = false; in runCompile()
1508 compileLayouts = true; in runCompile()
1544 if ((!compilerFilterGiven && !compilationReasonGiven && !compileLayouts) in runCompile()
1545 || (!compilerFilterGiven && compilationReasonGiven && compileLayouts) in runCompile()
1546 || (compilerFilterGiven && !compilationReasonGiven && compileLayouts) in runCompile()
1547 || (compilerFilterGiven && compilationReasonGiven && !compileLayouts) in runCompile()
1548 || (compilerFilterGiven && compilationReasonGiven && compileLayouts)) { in runCompile()
1616 if (compileLayouts) { in runCompile()
1619 result = internal.compileLayouts(packageName); in runCompile()
DInstaller.java714 public boolean compileLayouts(String apkPath, String packageName, String outDexFile, int uid) { in compileLayouts() method in Installer
716 return mInstalld.compileLayouts(apkPath, packageName, outDexFile, uid); in compileLayouts()
DPackageManagerService.java9719 mArtManagerService.compileLayouts(pkg);
9870 public boolean compileLayouts(String packageName) {
9878 return mViewCompiler.compileLayouts(pkg);
16636 mViewCompiler.compileLayouts(pkg);
24446 public boolean compileLayouts(String packageName) {
24454 return mArtManagerService.compileLayouts(pkg);
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl61 boolean compileLayouts(@utf8InCpp String apkPath, @utf8InCpp String packageName, in compileLayouts() method
/frameworks/base/core/java/android/content/pm/
DPackageManagerInternal.java932 public abstract boolean compileLayouts(String packageName); in compileLayouts() method in PackageManagerInternal
DIPackageManager.aidl593 boolean compileLayouts(String packageName); in compileLayouts() method
/frameworks/native/cmds/installd/
DInstalldNativeService.h109 binder::Status compileLayouts(const std::string& apkPath, const std::string& packageName,
DInstalldNativeService.cpp2323 binder::Status InstalldNativeService::compileLayouts(const std::string& apkPath, in compileLayouts() function in android::installd::InstalldNativeService