Home | History | Annotate | Download | only in input

Lines Matching refs:mKeyRepeatState

204     mKeyRepeatState.lastKeyEntry = NULL;
286 if (mKeyRepeatState.lastKeyEntry) {
287 if (currentTime >= mKeyRepeatState.nextRepeatTime) {
290 if (mKeyRepeatState.nextRepeatTime < *nextWakeupTime) {
291 *nextWakeupTime = mKeyRepeatState.nextRepeatTime;
643 if (mKeyRepeatState.lastKeyEntry) {
644 mKeyRepeatState.lastKeyEntry->release();
645 mKeyRepeatState.lastKeyEntry = NULL;
650 KeyEntry* entry = mKeyRepeatState.lastKeyEntry;
666 mKeyRepeatState.lastKeyEntry = newEntry;
674 // mKeyRepeatState.lastKeyEntry in addition to the one we return.
677 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
718 if (mKeyRepeatState.lastKeyEntry
719 && mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode) {
724 entry->repeatCount = mKeyRepeatState.lastKeyEntry->repeatCount + 1;
726 mKeyRepeatState.nextRepeatTime = LONG_LONG_MAX; // don't generate repeats ourselves
730 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
732 mKeyRepeatState.lastKeyEntry = entry;