Home
last modified time | relevance | path

Searched refs:PACKAGE_A (Results 1 – 3 of 3) sorted by relevance

/cts/hostsidetests/appbinding/hostside/src/com/android/cts/appbinding/
DAppBindingHostTest.java54 private static final String PACKAGE_A = "com.android.cts.appbinding.app"; field in AppBindingHostTest
57 private static final String PACKAGE_A_PROC = PACKAGE_A + ":persistent";
186 getDevice().uninstallPackage(PACKAGE_A); in uninstallTestApps()
350 installAndCheckBound(APK_1, PACKAGE_A, SERVICE_1, mCurrentUserId); in testSimpleBind1()
363 installAndCheckBound(APK_2, PACKAGE_A, SERVICE_2, mCurrentUserId); in testSimpleBind2()
389 installAndCheckNotBound(APK_3, PACKAGE_A, mCurrentUserId, in testSimpleNotBound3()
403 installAndCheckNotBound(APK_4, PACKAGE_A, mCurrentUserId, "More than one"); in testSimpleNotBound4()
416 installAndCheckNotBound(APK_5, PACKAGE_A, mCurrentUserId, in testSimpleNotBound5()
430 installAndCheckNotBound(APK_6, PACKAGE_A, mCurrentUserId, in testSimpleNotBound6()
445 installAndCheckBound(APK_1, PACKAGE_A, SERVICE_1, mCurrentUserId); in testUpgrade()
[all …]
/cts/hostsidetests/appsecurity/test-apps/SessionInspector/src/com/android/cts/sessioninspector/
DSessionInspectorTest.java51 String myPackage = Constants.PACKAGE_A.equals(getContext().getPackageName()) in testOnlyOwnerCanSee()
52 ? Constants.PACKAGE_A : Constants.PACKAGE_B; in testOnlyOwnerCanSee()
53 String otherPackage = Constants.PACKAGE_A.equals(myPackage) ? Constants.PACKAGE_B in testOnlyOwnerCanSee()
54 : Constants.PACKAGE_A; in testOnlyOwnerCanSee()
DConstants.java28 public static final String PACKAGE_A = PKG_BASE + "a"; field in Constants