Home
last modified time | relevance | path

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

/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DStorageHostTest.java43 private static final String PKG_A = "com.android.cts.storageapp_a"; field in StorageHostTest
72 getDevice().uninstallPackage(PKG_A); in tearDown()
84 runDeviceTests(PKG_A, CLASS, "testAllocate", user); in testVerifyAppStats()
94 runDeviceTests(PKG_A, CLASS, "testVerifySpaceManual", user); in testVerifyAppStats()
95 runDeviceTests(PKG_A, CLASS, "testVerifySpaceApi", user); in testVerifyAppStats()
102 runDeviceTests(PKG_A, CLASS, "testVerifyQuotaApi", user); in testVerifyAppQuota()
109 runDeviceTests(PKG_A, CLASS, "testVerifyAllocateApi", user); in testVerifyAppAllocate()
130 runDeviceTests(PKG_A, CLASS, "testAllocate", user); in testVerifyStatsMultiple()
131 runDeviceTests(PKG_A, CLASS, "testAllocate", user); in testVerifyStatsMultiple()
209 Utils.runDeviceTestsAsCurrentUser(getDevice(), PKG_A, CLASS, "testTweakComponent"); in testFullDisk() local
[all …]
/cts/hostsidetests/appsecurity/test-apps/StorageStatsApp/src/com/android/cts/storagestatsapp/
DStorageStatsTest.java25 import static com.android.cts.storageapp.Utils.PKG_A;
138 final ApplicationInfo a = pm.getApplicationInfo(PKG_A, 0); in testVerifyStatsMultiple()
241 final ApplicationInfo a = pm.getApplicationInfo(PKG_A, 0); in testVerifyCategory()
266 assertMostlyEquals(0, getCacheBytes(PKG_A, user)); in testCacheClearing()
270 final long targetA = doAllocateProvider(PKG_A, 0.5, 1262304000); in testCacheClearing()
291 assertMostlyEquals(targetA, getCacheBytes(PKG_A, user)); in testCacheClearing()
304 assertMostlyEquals(targetA, getCacheBytes(PKG_A, user)); in testCacheClearing()
319 assertMostlyEquals(targetA / 2, getCacheBytes(PKG_A, user), 2 * MB_IN_BYTES); in testCacheClearing()
/cts/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/
DUtils.java43 public static final String PKG_A = "com.android.cts.storageapp_a"; field in Utils