/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
D | InstallApexModuleTargetPreparerTest.java | 588 EasyMock.expect(mMockDevice.uninstallPackage(APK_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_SingleApk() 622 EasyMock.expect(mMockDevice.uninstallPackage(APK_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_InstallMultipleApk() 623 EasyMock.expect(mMockDevice.uninstallPackage(APK2_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_InstallMultipleApk() 665 EasyMock.expect(mMockDevice.uninstallPackage(APK_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_InstallMultipleApkContainingPersistentApk() 666 EasyMock.expect(mMockDevice.uninstallPackage(APK2_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_InstallMultipleApkContainingPersistentApk() 667 EasyMock.expect(mMockDevice.uninstallPackage(PERSISTENT_APK_PACKAGE_NAME)) in testSetupAndTearDown_InstallMultipleApkContainingPersistentApk() 744 EasyMock.expect(mMockDevice.uninstallPackage(APK_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_ApkAndApks() 745 EasyMock.expect(mMockDevice.uninstallPackage(SPLIT_APK_PACKAGE_NAME)) in testSetupAndTearDown_ApkAndApks() 858 EasyMock.expect(mMockDevice.uninstallPackage(APK_PACKAGE_NAME)).andReturn(null).once(); in testSetupAndTearDown_MultiInstall() 959 EasyMock.expect(mMockDevice.uninstallPackage(SPLIT_APK_PACKAGE_NAME)) in testInstallUsingBundletool() [all …]
|
D | InstallAllTestZipAppsSetupTest.java | 146 mMockTestDevice.uninstallPackage((String) EasyMock.anyObject()); in testSuccess() 168 mMockTestDevice.uninstallPackage((String) EasyMock.anyObject()); in testForceQueryableSuccess()
|
D | AppSetupTest.java | 335 EasyMock.expect(mMockDevice.uninstallPackage("com.fake1")).andReturn(null).times(2); in testSetup_uninstallAll() 354 EasyMock.expect(mMockDevice.uninstallPackage("com.fake1")).andReturn("error").times(3); in testSetup_uninstallAll_fails()
|
D | TestAppInstallSetupTest.java | 303 EasyMock.expect(mMockTestDevice.uninstallPackage(PACKAGE_NAME)).andReturn(null); in testInstallFailedUpdateIncompatible() 310 EasyMock.expect(mMockTestDevice.uninstallPackage(PACKAGE_NAME)).andReturn(null); in testInstallFailedUpdateIncompatible()
|
D | AppSetupFuncTest.java | 60 getDevice().uninstallPackage(WifiHelper.INSTRUMENTATION_PKG); in testSetupTeardown()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/helper/ |
D | TelephonyHelperTest.java | 58 EasyMock.expect(mDevice.uninstallPackage(TelephonyHelper.PACKAGE_NAME)).andReturn(null); in testGetSimInfo() 107 EasyMock.expect(mDevice.uninstallPackage(TelephonyHelper.PACKAGE_NAME)).andReturn(null); in testGetSimInfo_instrumentationFailed() 135 EasyMock.expect(mDevice.uninstallPackage(TelephonyHelper.PACKAGE_NAME)).andReturn(null); in testGetSimInfo_simTest_not_run() 162 EasyMock.expect(mDevice.uninstallPackage(TelephonyHelper.PACKAGE_NAME)).andReturn(null); in testGetSimInfo_simTest_failed()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | TestAppInstallSetup.java | 376 uninstallPackage(getDevice(), packageName); in tearDown() 437 uninstallPackage(testDevice, packageName); in installSinglePackage() 580 protected void uninstallPackage(ITestDevice device, String packageName) in uninstallPackage() method in TestAppInstallSetup 582 String msg = device.uninstallPackage(packageName); in uninstallPackage()
|
D | InstallApexModuleTargetPreparer.java | 177 super.uninstallPackage(device, apkPkgName); in tearDown()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/junit4/ |
D | BaseHostJUnit4Test.java | 826 public final String uninstallPackage(String pkgName) throws DeviceNotAvailableException { in uninstallPackage() method in BaseHostJUnit4Test 827 return getDevice().uninstallPackage(pkgName); in uninstallPackage() 837 public final String uninstallPackage(ITestDevice device, String pkgName) in uninstallPackage() method in BaseHostJUnit4Test 839 return device.uninstallPackage(pkgName); in uninstallPackage()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | AppSetup.java | 210 String result = device.uninstallPackage(pkgName); in tearDown() 241 String result = device.uninstallPackage(pkg); in uninstallAllApps()
|
D | InstallAllTestZipAppsSetup.java | 252 String msg = device.uninstallPackage(packageName); in tearDown()
|
D | AllTestAppsInstallSetup.java | 209 String msg = device.uninstallPackage(packageName); in tearDown()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | TestDevice.java | 357 public String uninstallPackage(final String packageName) throws DeviceNotAvailableException { in uninstallPackage() method in TestDevice 364 String result = getIDevice().uninstallPackage(packageName); in uninstallPackage()
|
D | WifiHelper.java | 671 String output = mDevice.uninstallPackage(INSTRUMENTATION_PKG); in cleanUp()
|
/tools/tradefederation/core/src/com/android/tradefed/device/helper/ |
D | TelephonyHelper.java | 136 device.uninstallPackage(PACKAGE_NAME); in getSimInfo()
|
/tools/tradefederation/contrib/src/com/android/performance/tests/ |
D | AppInstallTest.java | 236 mDevice.uninstallPackage(packageName); in installAndTime()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | WifiHelperTest.java | 203 EasyMock.expect(mMockDevice.uninstallPackage(WifiHelper.INSTRUMENTATION_PKG)) in testCleanPackage()
|
D | TestDeviceFuncTest.java | 172 mTestDevice.uninstallPackage(WifiHelper.INSTRUMENTATION_PKG); in assertWifiApkInstall()
|
D | TestDeviceTest.java | 4802 doReturn(null).when(spy).uninstallPackage(Mockito.eq("android.tradefed.contentprovider")); in testPushFile_contentProvider() 4863 doReturn(null).when(spy).uninstallPackage(Mockito.eq("android.tradefed.contentprovider")); in testPushFile_contentProvider_notFound()
|
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/test/ |
D | PerformanceTest.java | 211 mDevice.uninstallPackage(mApk.getPackageName()); in tearDown()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | ITestDevice.java | 216 public String uninstallPackage(String packageName) throws DeviceNotAvailableException; in uninstallPackage() method
|
D | StubDevice.java | 387 public String uninstallPackage(String packageName) throws InstallException { in uninstallPackage() method in StubDevice
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/contentprovider/ |
D | ContentProviderHandler.java | 157 mDevice.uninstallPackage(PACKAGE_NAME); in tearDown()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/junit4/ |
D | BaseHostJUnit4TestTest.java | 417 EasyMock.expect(mMockDevice.uninstallPackage("fakepackage")).andReturn(null);
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/ |
D | InstrumentationTest.java | 818 mDevice.uninstallPackage(mPackageName); in run()
|