Home
last modified time | relevance | path

Searched refs:device (Results 1 – 25 of 1413) sorted by relevance

12345678910>>...57

/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/
DAudioManagerHelper.java19 import com.android.tradefed.device.ITestDevice;
47 public static void muteDevice(ITestDevice device, HdmiCecClientWrapper hdmiCecClient) in muteDevice() argument
50 device.executeShellCommand(CLEAR_COMMAND); in muteDevice()
52 device.executeAdbCommand("logcat", "-c"); in muteDevice()
54 device.executeShellCommand(START_COMMAND + "android.hdmicec.app.MUTE"); in muteDevice()
59 public static void unmuteDevice(ITestDevice device, HdmiCecClientWrapper hdmiCecClient) in unmuteDevice() argument
62 device.executeShellCommand(CLEAR_COMMAND); in unmuteDevice()
64 device.executeShellCommand(START_COMMAND + "android.hdmicec.app.UNMUTE"); in unmuteDevice()
69 public static void unmuteDevice(ITestDevice device) in unmuteDevice() argument
72 device.executeShellCommand(CLEAR_COMMAND); in unmuteDevice()
[all …]
DRemoteControlPassthrough.java19 import com.android.tradefed.device.ITestDevice;
48 ITestDevice device, in checkUserControlPressAndRelease() argument
53 device.executeShellCommand(CLEAR_COMMAND); in checkUserControlPressAndRelease()
55 device.executeAdbCommand("logcat", "-c"); in checkUserControlPressAndRelease()
57 device.executeShellCommand(START_COMMAND); in checkUserControlPressAndRelease()
60 LogHelper.assertLog(device, CLASS, "Short press KEYCODE_DPAD_UP"); in checkUserControlPressAndRelease()
63 LogHelper.assertLog(device, CLASS, "Short press KEYCODE_DPAD_DOWN"); in checkUserControlPressAndRelease()
66 LogHelper.assertLog(device, CLASS, "Short press KEYCODE_DPAD_LEFT"); in checkUserControlPressAndRelease()
69 LogHelper.assertLog(device, CLASS, "Short press KEYCODE_DPAD_RIGHT"); in checkUserControlPressAndRelease()
73 device, CLASS, "Short press KEYCODE_DPAD_CENTER", "Short press KEYCODE_ENTER"); in checkUserControlPressAndRelease()
[all …]
DBaseHdmiCecCtsTest.java28 import com.android.tradefed.device.DeviceNotAvailableException;
29 import com.android.tradefed.device.ITestDevice;
171 public static int getDumpsysPhysicalAddress(ITestDevice device) throws DumpsysParseException { in getDumpsysPhysicalAddress() argument
172 return parseRequiredAddressFromDumpsys(device, AddressType.DUMPSYS_PHYSICAL_ADDRESS); in getDumpsysPhysicalAddress()
181 public static List<LogicalAddress> getDumpsysLogicalAddresses(ITestDevice device) in getDumpsysLogicalAddresses() argument
194 String dumpsys = device.executeShellCommand("dumpsys hdmi_control"); in getDumpsysLogicalAddresses()
219 public boolean isSystemAudioModeOn(ITestDevice device) throws DumpsysParseException { in isSystemAudioModeOn() argument
231 String dumpsys = device.executeShellCommand("dumpsys hdmi_control"); in isSystemAudioModeOn()
251 public static LogicalAddress getTargetLogicalAddress(ITestDevice device) in getTargetLogicalAddress() argument
253 return getTargetLogicalAddress(device, HdmiCecConstants.CEC_DEVICE_TYPE_UNKNOWN); in getTargetLogicalAddress()
[all …]
DWakeLockHelper.java19 import com.android.tradefed.device.ITestDevice;
45 public static void acquirePartialWakeLock(ITestDevice device) throws Exception { in acquirePartialWakeLock() argument
48 device.executeShellCommand(CLEAR_COMMAND); in acquirePartialWakeLock()
50 device.executeShellCommand(START_COMMAND + ACQUIRE_LOCK); in acquirePartialWakeLock()
51 LogHelper.assumeLog(device, TAG, "Acquired wake lock."); in acquirePartialWakeLock()
56 public static void releasePartialWakeLock(ITestDevice device) throws Exception { in releasePartialWakeLock() argument
59 device.executeShellCommand(START_COMMAND + RELEASE_LOCK); in releasePartialWakeLock()
61 device.executeShellCommand(CLEAR_COMMAND); in releasePartialWakeLock()
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/lib/
DDeviceUtils.java28 import com.android.tradefed.device.CollectingByteOutputReceiver;
29 import com.android.tradefed.device.DeviceNotAvailableException;
30 import com.android.tradefed.device.ITestDevice;
85 public static @Nonnull TestRunResult runDeviceTests(ITestDevice device, String pkgName, in runDeviceTests() argument
88 return internalRunDeviceTests(device, pkgName, testClassName, testMethodName, null); in runDeviceTests()
103 public static @Nonnull TestRunResult runDeviceTests(ITestDevice device, String pkgName, in runDeviceTests() argument
107 return internalRunDeviceTests(device, pkgName, testClassName, testMethodName, listener); in runDeviceTests()
110 private static @Nonnull TestRunResult internalRunDeviceTests(ITestDevice device, String pkgName, in internalRunDeviceTests() argument
119 pkgName, TEST_RUNNER, device.getIDevice()); in internalRunDeviceTests()
134 assertThat(device.runInstrumentationTests(testRunner, combinedLister)).isTrue(); in internalRunDeviceTests()
[all …]
/cts/hostsidetests/securitybulletin/src/android/security/cts/
DAdbUtils.java31 import com.android.tradefed.device.DeviceNotAvailableException;
32 import com.android.tradefed.device.ITestDevice;
70 ITestDevice device; field in AdbUtils.pocConfig
74 pocConfig(String binaryName, ITestDevice device) { in pocConfig() argument
76 this.device = device; in pocConfig()
89 public static String runCommandLine(String command, ITestDevice device) throws Exception { in runCommandLine() argument
94 return device.executeShellCommand(command); in runCommandLine()
106 public static String runPoc(String pocName, ITestDevice device) throws Exception { in runPoc() argument
107 return runPoc(pocName, device, SecurityTestCase.TIMEOUT_NONDETERMINISTIC); in runPoc()
120 public static String runPoc(String pocName, ITestDevice device, int timeout) throws Exception { in runPoc() argument
[all …]
DCVE_2021_39795.java24 import com.android.tradefed.device.ITestDevice;
38 ITestDevice device = null; in testPocCVE_2021_39795() local
40 device = getDevice(); in testPocCVE_2021_39795()
43 AdbUtils.runCommandLine("input keyevent KEYCODE_WAKEUP", device); in testPocCVE_2021_39795()
44 AdbUtils.runCommandLine("input keyevent KEYCODE_MENU", device); in testPocCVE_2021_39795()
45 AdbUtils.runCommandLine("input keyevent KEYCODE_HOME", device); in testPocCVE_2021_39795()
50 AdbUtils.runCommandLine("mkdir " + DIR_PATH, device); in testPocCVE_2021_39795()
54 "pm grant " + TEST_PKG + " android.permission.READ_EXTERNAL_STORAGE", device); in testPocCVE_2021_39795()
56 "pm grant " + TEST_PKG + " android.permission.WRITE_EXTERNAL_STORAGE", device); in testPocCVE_2021_39795()
60 "appops set --uid " + TEST_PKG + " MANAGE_EXTERNAL_STORAGE allow", device); in testPocCVE_2021_39795()
[all …]
DCVE_2022_20360.java25 import com.android.tradefed.device.ITestDevice;
42 ITestDevice device = null; in testPocCVE_2022_20360() local
46 device = getDevice(); in testPocCVE_2022_20360()
49 assumeTrue("Device does not support nfc", device.hasFeature("android.hardware.nfc")); in testPocCVE_2022_20360()
52 currentUser = device.getCurrentUser(); in testPocCVE_2022_20360()
55 newUser = device.createUser("CTSUser", true, false); in testPocCVE_2022_20360()
58 assumeTrue("Unable to create new guest user", device.startUser(newUser, true)); in testPocCVE_2022_20360()
61 assumeTrue("Unable to switch to guest user", device.switchUser(newUser)); in testPocCVE_2022_20360()
73 device.switchUser(currentUser); in testPocCVE_2022_20360()
77 device.stopUser(newUser); in testPocCVE_2022_20360()
[all …]
DCVE_2021_39797.java21 import com.android.tradefed.device.ITestDevice;
34 ITestDevice device = getDevice(); in testPocCVE_2021_39797() local
37 uninstallPackage(device, testPkg); in testPocCVE_2021_39797()
38 uninstallPackage(device, targetPkg); in testPocCVE_2021_39797()
41 AdbUtils.runCommandLine("input keyevent KEYCODE_WAKEUP", device); in testPocCVE_2021_39797()
42 AdbUtils.runCommandLine("input keyevent KEYCODE_MENU", device); in testPocCVE_2021_39797()
43 AdbUtils.runCommandLine("input keyevent KEYCODE_HOME", device); in testPocCVE_2021_39797()
47 String previous = AdbUtils.runCommandLine("settings get global hidden_api_policy", device); in testPocCVE_2021_39797()
51 AdbUtils.runCommandLine("settings put global hidden_api_policy 1", device); in testPocCVE_2021_39797()
55 AdbUtils.runCommandLine("settings put global hidden_api_policy " + previous, device); in testPocCVE_2021_39797()
DCVE_2021_0595.java24 import com.android.tradefed.device.ITestDevice;
41 ITestDevice device = null; in testPocCVE_2021_0595() local
46 device = getDevice(); in testPocCVE_2021_0595()
52 "pm create-user --profileOf 0 --managed TestWork", device); in testPocCVE_2021_0595()
54 device.startUser(workUserId); in testPocCVE_2021_0595()
59 "dpm set-profile-owner --user " + workUserId + " " + pocDeviceAdminPkg, device); in testPocCVE_2021_0595()
62 device); in testPocCVE_2021_0595()
66 device, in testPocCVE_2021_0595()
77 device.removeAdmin(pocDeviceAdminPkg, workUserId); in testPocCVE_2021_0595()
78 device.removeUser(workUserId); in testPocCVE_2021_0595()
[all …]
DCVE_2023_21256.java26 import com.android.tradefed.device.ITestDevice;
27 import com.android.tradefed.device.UserInfo;
42 ITestDevice device = null; in testPocCVE_2023_21256() local
46 device = getDevice(); in testPocCVE_2023_21256()
48 assumeTrue(device.isMultiUserSupported()); in testPocCVE_2023_21256()
51 "pm create-user --profileOf 0 --managed CVE_2023_21256_work_user", device); in testPocCVE_2023_21256()
53 Map<Integer, UserInfo> mapOfUserInfos = device.getUserInfos(); in testPocCVE_2023_21256()
61 assumeTrue(device.startUser(workUserId, true /* waitFlag */)); in testPocCVE_2023_21256()
68 .setDevice(device) in testPocCVE_2023_21256()
77 device.stopUser(workUserId, true /* waitFlag */, true /* forceFlag */); in testPocCVE_2023_21256()
[all …]
/cts/hostsidetests/angle/src/android/angle/cts/
DCtsAngleCommon.java18 import com.android.tradefed.device.ITestDevice;
19 import com.android.tradefed.device.PackageInfo;
106 static String getGlobalSetting(ITestDevice device, String globalSetting) throws Exception { in getGlobalSetting() argument
107 device.waitForDeviceAvailable(); in getGlobalSetting()
108 return device.getSetting("global", globalSetting); in getGlobalSetting()
111 static void setGlobalSetting(ITestDevice device, String globalSetting, String value) in setGlobalSetting() argument
113 device.waitForDeviceAvailable(); in setGlobalSetting()
114 device.setSetting("global", globalSetting, value); in setGlobalSetting()
115 device.executeShellCommand("am refresh-settings-cache"); in setGlobalSetting()
118 static void clearSettings(ITestDevice device) throws Exception { in clearSettings() argument
[all …]
/cts/hostsidetests/jvmti/attaching/host/src/android/jvmti/cts/
DJvmtiAttachingHostTest.java21 import com.android.tradefed.device.ITestDevice;
71 public void run(ITestDevice device, String pkg, String apk, String abiName); in run() argument
86 runJvmtiAgentLoadTest((ITestDevice device, String pkg, String apk, String abiName) -> { in testJvmtiAttachDuringBind() argument
88 runAttachTestCmd(device, pkg, "--attach-agent-bind " + AGENT); in testJvmtiAttachDuringBind()
96 runJvmtiAgentLoadTest((ITestDevice device, String pkg, String apk, String abiName) -> { in testJvmtiAttachEarly() argument
98 String pwd = device.executeShellCommand( in testJvmtiAttachEarly()
113 installLibToDataData(device, pkg, abiName, apk, pwd, AGENT, in testJvmtiAttachEarly()
115 runAttachTestCmd(device, pkg, "--attach-agent " + agentInDataData); in testJvmtiAttachEarly()
123 runJvmtiAgentLoadTest((ITestDevice device, String pkg, String apk, String abiName) -> { in testJvmtiAgentStartupAgents() argument
126 startup_dir = getPwd(device, pkg) + "/" + STARTUP_AGENT_DIR; in testJvmtiAgentStartupAgents()
[all …]
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DUtils.java24 import com.android.tradefed.device.DeviceNotAvailableException;
25 import com.android.tradefed.device.ITestDevice;
73 public static void runDeviceTestsAsCurrentUser(ITestDevice device, String packageName, in runDeviceTestsAsCurrentUser() argument
75 runDeviceTests(device, packageName, testClassName, testMethodName, device.getCurrentUser(), in runDeviceTestsAsCurrentUser()
79 public static void runDeviceTestsAsCurrentUser(ITestDevice device, String packageName, in runDeviceTestsAsCurrentUser() argument
82 runDeviceTests(device, packageName, testClassName, testMethodName, device.getCurrentUser(), in runDeviceTestsAsCurrentUser()
86 public static void runDeviceTests(ITestDevice device, String packageName, String testClassName, in runDeviceTests() argument
88 runDeviceTests(device, packageName, testClassName, testMethodName, USER_SYSTEM, null); in runDeviceTests()
91 public static void runDeviceTests(ITestDevice device, String packageName, String testClassName, in runDeviceTests() argument
94 runDeviceTests(device, packageName, testClassName, testMethodName, USER_SYSTEM, testArgs); in runDeviceTests()
[all …]
DAppSecurityPreparer.java21 import com.android.tradefed.device.DeviceNotAvailableException;
22 import com.android.tradefed.device.ITestDevice;
41 public void setUp(ITestDevice device, IBuildInfo buildInfo) in setUp() argument
45 removeSecondaryUsers(device); in setUp()
47 final int maxUsers = device.getMaxNumberOfUsersSupported(); in setUp()
51 "Created secondary user " + device.createUser("CTS_" + System.nanoTime())); in setUp()
55 "Created secondary user " + device.createUser("CTS_" + System.nanoTime())); in setUp()
58 try (InputStreamSource logcat = device.getLogcatDump()) { in setUp()
61 throw new TargetSetupError("Failed to create user.", e, device.getDeviceDescriptor()); in setUp()
66 public void tearDown(ITestDevice device, IBuildInfo buildInfo, Throwable throwable) in tearDown() argument
[all …]
/cts/tools/vm-tests-tf/targetprep/src/android/core/vm/targetprep/
DVmTestPreparer.java22 import com.android.tradefed.device.DeviceNotAvailableException;
23 import com.android.tradefed.device.ITestDevice;
50 public void setUp(ITestDevice device, IBuildInfo buildInfo) in setUp() argument
54 installVmPrereqs(device, helper); in setUp()
57 + device.getSerialNumber(), ex); in setUp()
65 public void tearDown(ITestDevice device, IBuildInfo buildInfo, Throwable e) in tearDown() argument
67 cleanupDeviceFiles(device); in tearDown()
78 private void installVmPrereqs(ITestDevice device, CompatibilityBuildHelper ctsBuild) in installVmPrereqs() argument
80 cleanupDeviceFiles(device); in installVmPrereqs()
84 createRemoteDir(device, VM_TEMP_DIR + "/dalvik-cache" ); in installVmPrereqs()
[all …]
/cts/hostsidetests/wifibroadcasts/src/android/wifibroadcasts/cts/
DWifiBroadcastsHostJUnit4Test.java24 import com.android.tradefed.device.ITestDevice;
92 public void setDevice(ITestDevice device) { in setDevice() argument
93 mDevice = device; in setDevice()
108 ITestDevice device = getDevice(); in testCleanLogcat() local
109 assertNotNull("Device not set", device); in testCleanLogcat()
110 if (!device.hasFeature(FEATURE_WIFI)) { in testCleanLogcat()
114 device.executeShellCommand(CLEAR_COMMAND); in testCleanLogcat()
116 device.executeShellCommand("svc data disable; svc wifi disable"); in testCleanLogcat()
118 device.executeAdbCommand("logcat", "-c"); in testCleanLogcat()
120 device.executeShellCommand("input keyevent KEYCODE_WAKEUP"); in testCleanLogcat()
[all …]
/cts/hostsidetests/classloaders/useslibrary/src/android/classloaders/cts/
DUtils.java21 import com.android.tradefed.device.DeviceNotAvailableException;
22 import com.android.tradefed.device.ITestDevice;
36 public static void runDeviceTests(ITestDevice device, String packageName, String testClassName, in runDeviceTests() argument
38 runDeviceTests(device, packageName, testClassName, testMethodName, USER_SYSTEM, null); in runDeviceTests()
41 public static void runDeviceTests(ITestDevice device, String packageName, String testClassName, in runDeviceTests() argument
44 runDeviceTests(device, packageName, testClassName, testMethodName, USER_SYSTEM, testArgs); in runDeviceTests()
47 public static void runDeviceTests(ITestDevice device, String packageName, String testClassName, in runDeviceTests() argument
49 runDeviceTests(device, packageName, testClassName, testMethodName, userId, null); in runDeviceTests()
52 public static void runDeviceTests(ITestDevice device, String packageName, String testClassName, in runDeviceTests() argument
56 runDeviceTests(device, packageName, testClassName, testMethodName, userId, testArgs, in runDeviceTests()
[all …]
/cts/tests/mediaprovider/preconditions/src/android/provider/cts/preconditions/
DExternalStoragePreparer.java20 import com.android.tradefed.device.DeviceNotAvailableException;
21 import com.android.tradefed.device.ITestDevice;
34 public void setUp(ITestDevice device, IBuildInfo buildInfo) in setUp() argument
38 device.executeShellCommand("sm set-virtual-disk false"); in setUp()
39 device.executeShellCommand("sm set-virtual-disk true"); in setUp()
42 final String diskId = getVirtualDisk(device); in setUp()
43 device.executeShellCommand("sm partition " + diskId + " public"); in setUp()
47 public void tearDown(ITestDevice device, IBuildInfo buildInfo, Throwable throwable) in tearDown() argument
51 device.executeShellCommand("sm set-virtual-disk false"); in tearDown()
54 private String getVirtualDisk(ITestDevice device) throws DeviceNotAvailableException { in getVirtualDisk() argument
[all …]
/cts/hostsidetests/graphics/displaymode/src/com/android/cts/graphics/displaymode/
DBootDisplayModeHostTest.java25 import com.android.tradefed.device.DeviceNotAvailableException;
26 import com.android.tradefed.device.ITestDevice;
73 ITestDevice device = getDevice(); in testGetBootDisplayMode() local
74 assertNotNull("Device not set", device); in testGetBootDisplayMode()
77 device.executeAdbCommand("logcat", "-c"); in testGetBootDisplayMode()
79 boolean deviceTestPassed = runDeviceTest(device, in testGetBootDisplayMode()
83 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", in testGetBootDisplayMode()
98 device.reboot(); in testGetBootDisplayMode()
100 device.executeShellCommand("cmd display get-active-display-mode-at-start " in testGetBootDisplayMode()
108 ITestDevice device = getDevice(); in testClearBootDisplayMode() local
[all …]
/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/playback/
DHdmiCecTvPowerToggleTest.java26 import com.android.tradefed.device.ITestDevice;
67 ITestDevice device = getDevice(); in cectTvPowerToggleTest_awake_noActiveSource_tvOn() local
68 LogicalAddress dutLogicalAddress = getTargetLogicalAddress(device, DUT_DEVICE_TYPE); in cectTvPowerToggleTest_awake_noActiveSource_tvOn()
70 device.waitForBootComplete(HdmiCecConstants.REBOOT_TIMEOUT); in cectTvPowerToggleTest_awake_noActiveSource_tvOn()
76 simulateCecSinkConnected(device, dutLogicalAddress); in cectTvPowerToggleTest_awake_noActiveSource_tvOn()
81 WakeLockHelper.acquirePartialWakeLock(device); in cectTvPowerToggleTest_awake_noActiveSource_tvOn()
82 device.executeShellCommand("input keyevent KEYCODE_TV_POWER"); in cectTvPowerToggleTest_awake_noActiveSource_tvOn()
102 ITestDevice device = getDevice(); in cectTvPowerToggleTest_awake_activeSource_tvOn() local
103 LogicalAddress dutLogicalAddress = getTargetLogicalAddress(device, DUT_DEVICE_TYPE); in cectTvPowerToggleTest_awake_activeSource_tvOn()
105 device.waitForBootComplete(HdmiCecConstants.REBOOT_TIMEOUT); in cectTvPowerToggleTest_awake_activeSource_tvOn()
[all …]
DHdmiCecRemoteControlPassThroughTest.java34 import com.android.tradefed.device.ITestDevice;
76 ITestDevice device = getDevice(); in cect_11_2_13_1_UserControlPressAndRelease() local
79 LogHelper.waitForLog(device, DEVICE_DISCOVERY_ACTION_TAG, in cect_11_2_13_1_UserControlPressAndRelease()
82 LogicalAddress dutLogicalAddress = getTargetLogicalAddress(device, DUT_DEVICE_TYPE); in cect_11_2_13_1_UserControlPressAndRelease()
84 hdmiCecClient, device, LogicalAddress.TV, dutLogicalAddress); in cect_11_2_13_1_UserControlPressAndRelease()
95 ITestDevice device = getDevice(); in cect_11_2_13_2_UserControlPressAndHold() local
98 LogHelper.waitForLog(device, DEVICE_DISCOVERY_ACTION_TAG, in cect_11_2_13_2_UserControlPressAndHold()
101 LogicalAddress dutLogicalAddress = getTargetLogicalAddress(device, in cect_11_2_13_2_UserControlPressAndHold()
104 hdmiCecClient, device, LogicalAddress.TV, dutLogicalAddress); in cect_11_2_13_2_UserControlPressAndHold()
124 ITestDevice device = getDevice(); in cect_4_8_4_UserControlPressAndRelease_20() local
[all …]
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/
DBluetoothHidDeviceCallbackTest.java33 BluetoothDevice device, byte type, byte id, int bufferSize) {
34 super.onGetReport(device, type, id, bufferSize);
38 public void onSetReport(BluetoothDevice device, byte type, byte id, byte[] data) {
39 super.onSetReport(device, type, id, data);
43 public void onSetProtocol(BluetoothDevice device, byte protocol) {
44 super.onSetProtocol(device, protocol);
48 public void onInterruptData(BluetoothDevice device, byte reportId, byte[] data) {
49 super.onInterruptData(device, reportId, data);
53 public void onVirtualCableUnplug(BluetoothDevice device) {
54 super.onVirtualCableUnplug(device);
/cts/tests/tests/companion/multidevice/host/
Dcdm_base_test.py19 return map(lambda device: device['Address'], self.cdm.btGetPairedDevices())
30 def _setup_device(device): argument
31 device.load_snippet('cdm', CDM_SNIPPET_PACKAGE)
33 device.cdm.btEnable()
34 device.address = device.cdm.btGetAddress()
37 device.cdm.disassociateAll()
44 def _setup_device(device): argument
46 device.adb.shell('input keyevent KEYCODE_WAKEUP')
47 device.adb.shell('input keyevent KEYCODE_MENU')
48 device.adb.shell('input keyevent KEYCODE_HOME')
[all …]
/cts/hostsidetests/appwidget/src/android/appwidget/cts/
DStatsTest.kt46 val pmResult = device.executeShellV2Command("pm clear $PACKAGE") in before()
48 user = device.mainUserId ?: device.currentUser in before()
49 device.startUser(user, true) in before()
52 ConfigUtils.removeConfig(device) in before()
53 ReportUtils.clearReports(device) in before()
58 val pmResult = device.executeShellV2Command("pm clear $PACKAGE") in after()
60 ConfigUtils.removeConfig(device) in after()
61 ReportUtils.clearReports(device) in after()
68 device, in testWidgetMemoryStats()
80 AtomTestUtils.sendAppBreadcrumbReportedAtom(device) in testWidgetMemoryStats()
[all …]

12345678910>>...57