Home
last modified time | relevance | path

Searched refs:getInstalledPackageNames (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DITestDevice.java364 public Set<String> getInstalledPackageNames() throws DeviceNotAvailableException; in getInstalledPackageNames() method
DTestDevice.java678 public Set<String> getInstalledPackageNames() throws DeviceNotAvailableException { in getInstalledPackageNames() method in TestDevice
679 return getInstalledPackageNames(new PkgFilter() { in getInstalledPackageNames()
748 private Set<String> getInstalledPackageNames(PkgFilter filter)
DNativeDevice.java3361 public Set<String> getInstalledPackageNames() throws DeviceNotAvailableException { in getInstalledPackageNames() method in NativeDevice
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceFuncTest.java167 assertFalse(mTestDevice.getInstalledPackageNames().contains( in assertWifiApkInstall()
170 assertTrue(mTestDevice.getInstalledPackageNames().contains( in assertWifiApkInstall()
DTestDeviceTest.java1751 Set<String> actualPkgs = mTestDevice.getInstalledPackageNames(); in testGetInstalledPackageNames()
1766 Set<String> actualPkgs = mTestDevice.getInstalledPackageNames(); in testGetInstalledPackageNamesForBadOutput()
DNativeDeviceTest.java224 mTestDevice.getInstalledPackageNames(); in testGetInstalledPackageNames_exception()
/tools/tradefederation/core/src/com/android/tradefed/testtype/junit4/
DBaseHostJUnit4Test.java665 for (String installedPackage : device.getInstalledPackageNames()) { in isPackageInstalled()