Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/dex/
DViewCompiler.java40 public boolean compileLayouts(AndroidPackage pkg) { in compileLayouts() method in ViewCompiler
52 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
DArtManagerService.java486 public boolean compileLayouts(AndroidPackage pkg) { in compileLayouts() method in ArtManagerService
507 return mInstaller.compileLayouts(apkPath, packageName, outDexFile, in compileLayouts()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl69 boolean compileLayouts(@utf8InCpp String apkPath, @utf8InCpp String packageName, in compileLayouts() method
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommand.java1634 boolean compileLayouts = false; in runCompile()
1655 compileLayouts = true; in runCompile()
1691 if ((!compilerFilterGiven && !compilationReasonGiven && !compileLayouts) in runCompile()
1692 || (!compilerFilterGiven && compilationReasonGiven && compileLayouts) in runCompile()
1693 || (compilerFilterGiven && !compilationReasonGiven && compileLayouts) in runCompile()
1694 || (compilerFilterGiven && compilationReasonGiven && !compileLayouts) in runCompile()
1695 || (compilerFilterGiven && compilationReasonGiven && compileLayouts)) { in runCompile()
1763 if (compileLayouts) { in runCompile()
1766 result = internal.compileLayouts(packageName); in runCompile()
DInstaller.java805 public boolean compileLayouts(String apkPath, String packageName, String outDexFile, int uid) { in compileLayouts() method in Installer
807 return mInstalld.compileLayouts(apkPath, packageName, outDexFile, uid); in compileLayouts()
/frameworks/base/services/core/java/android/content/pm/
DPackageManagerInternal.java874 public abstract boolean compileLayouts(String packageName); in compileLayouts() method in PackageManagerInternal
/frameworks/native/cmds/installd/
DInstalldNativeService.h119 binder::Status compileLayouts(const std::string& apkPath, const std::string& packageName,
DInstalldNativeService.cpp2425 binder::Status InstalldNativeService::compileLayouts(const std::string& apkPath, in compileLayouts() function in android::installd::InstalldNativeService
/frameworks/base/core/java/android/content/pm/
DIPackageManager.aidl585 boolean compileLayouts(String packageName); in compileLayouts() method