Searched refs:reportMsg (Results 1 – 2 of 2) sorted by relevance
83 final String reportMsg = checkForProcessErrors(); in testNoProcessErrorsAfterBoot() local84 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() local215 return reportMsg; in checkForProcessErrors()
389 Message reportMsg = mInjector.mHandler.getMessageForCode(REPORT_USER_SWITCH_MSG); in startForegroundUserAssertions() local390 assertNotNull(reportMsg); in startForegroundUserAssertions()391 UserState userState = (UserState) reportMsg.obj; in startForegroundUserAssertions()395 assertEquals("Unexpected old user id", 0, reportMsg.arg1); in startForegroundUserAssertions()396 assertEquals("Unexpected new user id", TEST_USER_ID, reportMsg.arg2); in startForegroundUserAssertions()426 Message reportMsg = mInjector.mHandler.getMessageForCode(REPORT_USER_SWITCH_MSG); in testDispatchUserSwitch() local427 assertNotNull(reportMsg); in testDispatchUserSwitch()428 UserState userState = (UserState) reportMsg.obj; in testDispatchUserSwitch()429 int oldUserId = reportMsg.arg1; in testDispatchUserSwitch()430 int newUserId = reportMsg.arg2; in testDispatchUserSwitch()[all …]