Lines Matching refs:an
3 …g'. This is an event that gets triggered when the system thinks that an application is too slow to…
8 2. The application did not have a focused window, and an input event that requires focus was genera…
12 ## 1. Application does not respond to an input event that was sent to it. ##
14 The most common case is when an application does not respond to input that dispatcher sent to it. T…
16 When the event is being dispatched to an application, the normal flow is: `mPendingEvent` → `connec…
18 … an app is not responding, we look at the oldest entry in the `waitQueue`. If the entry sits in th…
29 For example, if an application is being debugged, the ActivityManager may want to increase the time…
33 …f date. Duplicate entries are allowed because there may be two events with an identical timeout ti…
37 When an application sends a response for a particular dispatch entry, that entry is removed from th…
42 In order to test this behaviour, you can create an application that calls `SystemClock.sleep` while…
44 …ation is that the ANR dialog will come up within a short period of sending an input event (typical…
49 This is a legacy behaviour that we are maintaining inside InputDispatcher. When an application is l…
51 After launching, an application may not add a focused window. This could be either due to a bug in …
53 …is as follows: touches will continue to function normally, without causing an ANR. If there is a f…
59 …FocusedApplication` are set. When the `mInputTargetWaitTimeoutTime` expires, an ANR will be raised.
64 Create an empty application that sets `FLAG_NOT_FOCUSABLE` on its window in `onCreate`. Touching th…
73 When an app is unresponsive, new touches do not go to the app. They get dropped with a warning log.…