Home
last modified time | relevance | path

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

/development/ndk/sources/android/native_app_glue/
Dandroid_native_app_glue.c93 if (android_app->inputQueue != NULL) { in android_app_pre_exec_cmd()
94 AInputQueue_detachLooper(android_app->inputQueue); in android_app_pre_exec_cmd()
96 android_app->inputQueue = android_app->pendingInputQueue; in android_app_pre_exec_cmd()
97 if (android_app->inputQueue != NULL) { in android_app_pre_exec_cmd()
99 AInputQueue_attachLooper(android_app->inputQueue, in android_app_pre_exec_cmd()
177 if (android_app->inputQueue != NULL) { in android_app_destroy()
178 AInputQueue_detachLooper(android_app->inputQueue); in android_app_destroy()
189 while (AInputQueue_getEvent(app->inputQueue, &event) >= 0) { in process_input()
191 if (AInputQueue_preDispatchEvent(app->inputQueue, event)) { in process_input()
196 AInputQueue_finishEvent(app->inputQueue, event, handled); in process_input()
[all …]
Dandroid_native_app_glue.h147 AInputQueue* inputQueue; member