Searched refs:RECENT_EVENTS_TO_LOG (Results 1 – 2 of 2) sorted by relevance
44 private static final int RECENT_EVENTS_TO_LOG = 5; field in InputEventConsistencyVerifier681 if (RECENT_EVENTS_TO_LOG != 0 && mRecentEvents != null) { in finishEvent()683 for (int i = 0; i < RECENT_EVENTS_TO_LOG; i++) { in finishEvent()684 final int index = (mMostRecentEventIndex + RECENT_EVENTS_TO_LOG - i) in finishEvent()685 % RECENT_EVENTS_TO_LOG; in finishEvent()704 if (RECENT_EVENTS_TO_LOG != 0) { in finishEvent()706 mRecentEvents = new InputEvent[RECENT_EVENTS_TO_LOG]; in finishEvent()707 mRecentEventsUnhandled = new boolean[RECENT_EVENTS_TO_LOG]; in finishEvent()709 final int index = (mMostRecentEventIndex + 1) % RECENT_EVENTS_TO_LOG; in finishEvent()
74738 Landroid/view/InputEventConsistencyVerifier;->RECENT_EVENTS_TO_LOG:I