HomeSort by relevance Sort by last modified time
    Searched refs:mUnhandledKeys (Results 1 - 2 of 2) sorted by null

  /frameworks/base/include/android_runtime/
android_app_NativeActivity.h 63 * - If handled is false, the event is put on mUnhandledKeys, and:
140 android::Vector<android::KeyEvent*> mUnhandledKeys;
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 311 if (mUnhandledKeys.size() > 0) {
312 event = mUnhandledKeys[0];
313 mUnhandledKeys.removeAt(0);
367 LOG_TRACE("Unhandled key: pending=%d write=%d\n", mUnhandledKeys.size(), mWorkWrite);
368 if (mUnhandledKeys.size() <= 0 && mWorkWrite >= 0) {
371 mUnhandledKeys.add(keyEvent);
    [all...]

Completed in 231 milliseconds