Searched defs:callbackType (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DChoreographer.java265 * @param callbackType The callback type.
272 public void postCallback(int callbackType, Runnable action, Object token) { argument
273 postCallbackDelayed(callbackType, action, token, 0);
282 * @param callbackType The callback type.
290 public void postCallbackDelayed(int callbackType, argument
295 if (callbackType < 0 || callbackType > CALLBACK_LAST) {
296 throw new IllegalArgumentException("callbackType is invalid");
299 postCallbackDelayedInternal(callbackType, action, token, delayMillis);
302 private void postCallbackDelayedInternal(int callbackType, argument
339 removeCallbacks(int callbackType, Runnable action, Object token) argument
347 removeCallbacksInternal(int callbackType, Object action, Object token) argument
542 doCallbacks(int callbackType, long frameTimeNanos) argument
584 doScheduleCallback(int callbackType) argument
[all...]

Completed in 69 milliseconds