Home
last modified time | relevance | path

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

/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()
197 Utils.runDeviceTestsAsCurrentUser(getDevice(), PKG_B, CLASS, "testFullDisk"); in testFullDisk() local
/cts/hostsidetests/appsecurity/test-apps/StorageStatsApp/src/com/android/cts/storagestatsapp/
DStorageStatsTest.java26 import static com.android.cts.storageapp.Utils.PKG_B;
139 final ApplicationInfo b = pm.getApplicationInfo(PKG_B, 0); in testVerifyStatsMultiple()
242 final ApplicationInfo b = pm.getApplicationInfo(PKG_B, 0); in testVerifyCategory()
267 assertMostlyEquals(0, getCacheBytes(PKG_B, user)); in testCacheClearing()
271 final long targetB = doAllocateProvider(PKG_B, 2.0, 1420070400); in testCacheClearing()
292 assertMostlyEquals(targetB, getCacheBytes(PKG_B, user)); in testCacheClearing()
305 assertMostlyEquals(targetB / 2, getCacheBytes(PKG_B, user), 2 * MB_IN_BYTES); in testCacheClearing()
320 assertMostlyEquals(targetA / 2, getCacheBytes(PKG_B, user), 2 * MB_IN_BYTES); in testCacheClearing()
/cts/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/
DStorageTest.java27 import static com.android.cts.storageapp.Utils.PKG_B;
162 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