Home
last modified time | relevance | path

Searched refs:logs (Results 1 – 18 of 18) sorted by relevance

/cts/hostsidetests/sustainedperf/src/android/SustainedPerformance/cts/
DSustainedPerformanceHostTest.java114 public void analyzeResults(String logs, boolean mode) { in analyzeResults() argument
120 Scanner in = new Scanner(logs); in analyzeResults()
179 … String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", TEST_CLASS + ":I", "*:S"); in testShader() local
181 Scanner in = new Scanner(logs); in testShader()
214 logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); in testShader()
215 analyzeResults(logs, true); in testShader()
/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/
DLogHelper.java46 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", tag + ":I", "*:S"); in getLog() local
49 Scanner in = new Scanner(logs); in getLog()
75 String logs = in getSupportedAudioFormats() local
79 Scanner in = new Scanner(logs); in getSupportedAudioFormats()
/cts/hostsidetests/monkey/src/com/android/cts/monkey/
DMonkeyTest.java42 String logs = mDevice.executeAdbCommand( in assertIsUserAMonkey() local
45 Scanner s = new Scanner(logs); in assertIsUserAMonkey()
/cts/hostsidetests/sample/src/android/sample/cts/
DSampleHostTest.java73 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); in testLogcat() local
76 Scanner in = new Scanner(logs); in testLogcat()
DSampleHostJUnit4Test.java98 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); in testLogcat() local
101 Scanner in = new Scanner(logs); in testLogcat()
/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/common/
DHdmiCecDeviceTypeTest.java45 String logs = device.executeShellCommand("cmd package list features"); in checkHdmiCecDeviceType() local
46 Scanner in = new Scanner(logs); in checkHdmiCecDeviceType()
/cts/hostsidetests/trustedvoice/src/android/trustedvoice/cts/
DTrustedVoiceHostTest.java108 String logs = getDevice().executeAdbCommand( in testUnlock() local
111 in = new Scanner(logs); in testUnlock()
/cts/hostsidetests/os/src/android/os/cts/
DProcfsHostTests.java164 String logs = in startTestApp() local
168 Scanner in = new Scanner(logs); in startTestApp()
181 "Test app PID not captured. results = \"" + results + "\"; logs = \"" + logs + "\"", in startTestApp()
DOsHostTests.java122 String logs = mDevice.executeAdbCommand("logcat", "-v", "brief", "-d"); in testIntentFilterHostValidation() local
125 Scanner scanner = new Scanner(logs); in testIntentFilterHostValidation()
/cts/hostsidetests/abioverride/src/android/abioverride/cts/
DAbiOverrideTest.java93 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); in testAbiIs32bit() local
96 Scanner in = new Scanner(logs); in testAbiIs32bit()
/cts/hostsidetests/systemui/src/android/host/systemui/
DBaseTileServiceTest.java119 String logs = getDevice().executeAdbCommand("logcat", "-v", "brief", "-d", mService + ":I", in hasLog() local
121 return logs.contains(str); in hasLog()
/cts/hostsidetests/wifibroadcasts/src/android/wifibroadcasts/cts/
DWifiBroadcastsHostJUnit4Test.java142 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); in testCleanLogcat() local
144 Scanner in = new Scanner(logs); in testCleanLogcat()
/cts/hostsidetests/tv/src/com/android/cts/tv/
DTvInputManagerHostTest.java111 String logs = device.executeAdbCommand( in testInputUpdated() local
113 Scanner in = new Scanner(logs); in testInputUpdated()
/cts/hostsidetests/multiuser/src/android/host/multiuser/
DCreateUsersNoAppCrashesTest.java112 String logs = getDevice().executeAdbCommand("logcat", "-v", "brief", "-d", in waitForUserSwitchComplete() local
114 Scanner in = new Scanner(logs); in waitForUserSwitchComplete()
/cts/hostsidetests/usb/src/com/android/cts/usb/
DTestUsbTest.java167 String logs = mDevice.executeAdbCommand( in testUsbSerialReadOnDeviceMatches() local
171 matcher = pattern.matcher(logs); in testUsbSerialReadOnDeviceMatches()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DActivityMetricsLoggerTests.java423 private void assertLogsContain(String[] logs, String expectedLog) { in assertLogsContain() argument
424 for (String line : logs) { in assertLogsContain()
429 fail("Expected to find '" + expectedLog + "' in " + Arrays.toString(logs)); in assertLogsContain()
/cts/tests/tests/telephony/current/src/android/telephony/euicc/cts/
DEuiccServiceTest.java511 public void onComplete(String logs) { in testDump()
512 assertEquals(MockEuiccService.MOCK_DUMPED_LOG, logs); in testDump()
/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
DSecurityLoggingTest.java494 final List<SecurityEvent> logs = mDevicePolicyManager.retrieveSecurityLogs(getWho()); in testSecurityLoggingRetrievalRateLimited() local
496 if (logs != null) { in testSecurityLoggingRetrievalRateLimited()