Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewRootImpl.java6872 HandlerAction handlerAction = new HandlerAction(); in postDelayed() local
6873 handlerAction.action = action; in postDelayed()
6874 handlerAction.delay = delayMillis; in postDelayed()
6877 mActions.add(handlerAction); in postDelayed()
6882 final HandlerAction handlerAction = new HandlerAction(); in removeCallbacks() local
6883 handlerAction.action = action; in removeCallbacks()
6888 while (actions.remove(handlerAction)) { in removeCallbacks()
6900 final HandlerAction handlerAction = actions.get(i); in executeActions() local
6901 handler.postDelayed(handlerAction.action, handlerAction.delay); in executeActions()