Home
last modified time | relevance | path

Searched refs:isApex (Results 1 – 4 of 4) sorted by relevance

/cts/libs/install/src/com/android/cts/install/lib/
DTestApp.java85 public TestApp(String name, String packageName, long versionCode, boolean isApex, in TestApp() argument
91 mIsApex = isApex; in TestApp()
95 public TestApp(String name, String packageName, long versionCode, boolean isApex, in TestApp() argument
104 mIsApex = isApex; in TestApp()
118 public TestApp(String name, String packageName, long versionCode, boolean isApex, File path) { in TestApp() argument
119 this(name, packageName, versionCode, isApex, new File[]{ path }); in TestApp()
139 boolean isApex() { in isApex() method in TestApp
DInstall.java219 private int createEmptyInstallSession(boolean multiPackage, boolean isApex) in createEmptyInstallSession() argument
221 if ((mIsStaged || isApex) && mBypassStagedInstallerCheck) { in createEmptyInstallSession()
224 if (isApex && mBypassAllowedApexUpdateCheck) { in createEmptyInstallSession()
233 if (isApex) { in createEmptyInstallSession()
246 if ((mIsStaged || isApex) && mBypassStagedInstallerCheck) { in createEmptyInstallSession()
249 if (isApex && mBypassAllowedApexUpdateCheck) { in createEmptyInstallSession()
261 int sessionId = createEmptyInstallSession(/*multiPackage*/false, app.isApex()); in createSingleInstallSession()
/cts/hostsidetests/install/app/src/android/cts/install/
DInstallRule.java110 if (version == VERSION_CODE_INVALID && info.isApex) { in assertPackageVersion()
/cts/tests/tests/content/src/android/content/pm/cts/
DPackageManagerTest.java1337 assertThat(packageInfo.isApex).isTrue(); in assertShimApexInfoIsCorrect()