Home
last modified time | relevance | path

Searched refs:reportMsg (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/am/
DUserControllerTest.java170 Message reportMsg = mInjector.handler.getMessageForCode(REPORT_USER_SWITCH_MSG); in startForegroundUserAssertions() local
171 assertNotNull(reportMsg); in startForegroundUserAssertions()
172 UserState userState = (UserState) reportMsg.obj; in startForegroundUserAssertions()
176 assertEquals("Unexpected old user id", 0, reportMsg.arg1); in startForegroundUserAssertions()
177 assertEquals("Unexpected new user id", TEST_USER_ID, reportMsg.arg2); in startForegroundUserAssertions()
201 Message reportMsg = mInjector.handler.getMessageForCode(REPORT_USER_SWITCH_MSG); in testDispatchUserSwitch() local
202 assertNotNull(reportMsg); in testDispatchUserSwitch()
203 UserState userState = (UserState) reportMsg.obj; in testDispatchUserSwitch()
204 int oldUserId = reportMsg.arg1; in testDispatchUserSwitch()
205 int newUserId = reportMsg.arg2; in testDispatchUserSwitch()
[all …]
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
DProcessErrorsTest.java83 final String reportMsg = checkForProcessErrors(); in testNoProcessErrorsAfterBoot() local
84 if (reportMsg != null) { in testNoProcessErrorsAfterBoot()
85 Log.w(TAG, reportMsg); in testNoProcessErrorsAfterBoot()
89 assertNull(reportMsg, reportMsg); in testNoProcessErrorsAfterBoot()
214 final String reportMsg = reportListContents(errList); in checkForProcessErrors() local
215 return reportMsg; in checkForProcessErrors()