Home
last modified time | relevance | path

Searched refs:PKG_B (Results 1 – 6 of 6) sorted by relevance

/cts/tests/appsearch/src/com/android/cts/appsearch/app/
DGlobalSearchSessionPlatformCtsTest.java90 private static final String PKG_B = "com.android.cts.appsearch.helper.b"; field in GlobalSearchSessionPlatformCtsTest
144 clearData(PKG_B); in cleanup()
159 assertPackageCannotAccess(PKG_B); in testNoPackageAccess_default()
221 assertPackageCannotAccess(PKG_B); in testAllowPackageAccess()
236 new PackageIdentifier(PKG_B, PKG_B_CERT_SHA256)) in testAllowMultiplePackageAccess()
246 assertPackageCanAccess(EMAIL_DOCUMENT, PKG_B); in testAllowMultiplePackageAccess()
305 indexGloballySearchableDocument(PKG_B); in testGlobalSearch_withAccess()
317 .addFilterPackageNames(PKG_A, PKG_B) in testGlobalSearch_withAccess()
325 assertThat(actualPackageNames).containsExactly(PKG_A, PKG_B); in testGlobalSearch_withAccess()
333 indexNotGloballySearchableDocument(PKG_B); in testGlobalSearch_withPartialAccess()
[all …]
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DStorageHostTest.java44 private static final String PKG_B = "com.android.cts.storageapp_b"; field in StorageHostTest
73 getDevice().uninstallPackage(PKG_B); in tearDown()
133 runDeviceTests(PKG_B, CLASS, "testAllocate", user); in testVerifyStatsMultiple()
199 Utils.runDeviceTestsAsCurrentUser(getDevice(), PKG_B, CLASS, "testFullDisk"); in testFullDisk() local
/cts/hostsidetests/appsecurity/test-apps/StorageStatsApp/src/com/android/cts/storagestatsapp/
DStorageStatsTest.java27 import static com.android.cts.storageapp.Utils.PKG_B;
147 final ApplicationInfo b = pm.getApplicationInfo(PKG_B, 0); in testVerifyStatsMultiple()
274 final ApplicationInfo b = pm.getApplicationInfo(PKG_B, 0); in testVerifyCategory()
299 assertMostlyEquals(0, getCacheBytes(PKG_B, user)); in testCacheClearing()
303 final long targetB = doAllocateProvider(PKG_B, 2.0, 1420070400); in testCacheClearing()
326 assertMostlyEquals(targetB, getCacheBytes(PKG_B, user)); in testCacheClearing()
339 assertMostlyEquals(targetB / 2, getCacheBytes(PKG_B, user), 2 * MB_IN_BYTES); in testCacheClearing()
354 assertMostlyEquals(targetA / 2, getCacheBytes(PKG_B, user), 2 * MB_IN_BYTES); in testCacheClearing()
/cts/hostsidetests/appsearch/test-apps/AppSearchHostTestHelperA/src/android/appsearch/app/a/
DAppSearchDeviceTest.java74 private static final String PKG_B = "android.appsearch.app.b"; field in AppSearchDeviceTest
102 new PackageIdentifier(PKG_B, PKG_B_CERT_SHA256)).build()).get(); in testPutDocuments()
/cts/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/
DStorageTest.java27 import static com.android.cts.storageapp.Utils.PKG_B;
221 ai = getContext().getPackageManager().getApplicationInfo(PKG_B, 0); in testVerifySpaceApi()
DUtils.java44 public static final String PKG_B = "com.android.cts.storageapp_b"; field in Utils