Home
last modified time | relevance | path

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

/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DStorageHostTest.java36 private static final String PKG_A = "com.android.cts.storageapp_a"; field in StorageHostTest
65 getDevice().uninstallPackage(PKG_A); in tearDown()
77 runDeviceTests(PKG_A, CLASS, "testAllocate", user); in testVerifyAppStats()
84 runDeviceTests(PKG_A, CLASS, "testVerifySpaceManual", user); in testVerifyAppStats()
85 runDeviceTests(PKG_A, CLASS, "testVerifySpaceApi", user); in testVerifyAppStats()
92 runDeviceTests(PKG_A, CLASS, "testVerifyQuotaApi", user); in testVerifyAppQuota()
99 runDeviceTests(PKG_A, CLASS, "testVerifyAllocateApi", user); in testVerifyAppAllocate()
120 runDeviceTests(PKG_A, CLASS, "testAllocate", user); in testVerifyStatsMultiple()
121 runDeviceTests(PKG_A, CLASS, "testAllocate", user); in testVerifyStatsMultiple()
191 Utils.runDeviceTests(getDevice(), PKG_A, CLASS, "testFullDisk"); in testFullDisk() local
[all …]
/cts/hostsidetests/ui/control/src/android/taskswitching/control/cts/
DTaskSwitchingDeviceTest.java44 private static final String PKG_A = "android.taskswitching.appa"; field in TaskSwitchingDeviceTest
55 getContext().registerReceiver(mReceiverA, new IntentFilter(PKG_A)); in setUp()
58 startActivity(PKG_A, ACTIVITY_A); in setUp()
81 startActivity(PKG_A, ACTIVITY_A); in testMeasureTaskSwitching()
/cts/hostsidetests/appsecurity/test-apps/StorageStatsApp/src/com/android/cts/storagestatsapp/
DStorageStatsTest.java25 import static com.android.cts.storageapp.Utils.PKG_A;
137 final ApplicationInfo a = pm.getApplicationInfo(PKG_A, 0); in testVerifyStatsMultiple()
237 final ApplicationInfo a = pm.getApplicationInfo(PKG_A, 0); in testVerifyCategory()
262 assertMostlyEquals(0, getCacheBytes(PKG_A, user)); in testCacheClearing()
266 final long targetA = doAllocateProvider(PKG_A, 0.5, 1262304000); in testCacheClearing()
287 assertMostlyEquals(targetA, getCacheBytes(PKG_A, user)); in testCacheClearing()
300 assertMostlyEquals(targetA, getCacheBytes(PKG_A, user)); in testCacheClearing()
315 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