/frameworks/base/core/java/android/view/ |
D | BatchedInputEventReceiver.java | 26 Choreographer mChoreographer; field in BatchedInputEventReceiver 32 mChoreographer = choreographer; in BatchedInputEventReceiver() 63 mChoreographer.postCallback(Choreographer.CALLBACK_INPUT, mBatchedInputRunnable, null); in scheduleBatchedInput() 70 mChoreographer.removeCallbacks( in unscheduleBatchedInput() 78 doConsumeBatchedInput(mChoreographer.getFrameTimeNanos()); in run()
|
D | RenderNodeAnimator.java | 438 private final Choreographer mChoreographer; field in RenderNodeAnimator.DelayedAnimationHelper 442 mChoreographer = Choreographer.getInstance(); in DelayedAnimationHelper() 457 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null); in scheduleCallback() 463 long frameTimeMs = mChoreographer.getFrameTime(); in run()
|
D | ThreadedRenderer.java | 343 private Choreographer mChoreographer; field in ThreadedRenderer 759 final Choreographer choreographer = attachInfo.mViewRootImpl.mChoreographer; in draw()
|
D | ViewRootImpl.java | 256 Choreographer mChoreographer; field in ViewRootImpl 445 mChoreographer = Choreographer.getInstance(); in ViewRootImpl() 1226 mChoreographer.postCallback( in scheduleTraversals() 1240 mChoreographer.removeCallbacks( in unscheduleTraversals() 1756 mChoreographer.mFrameInfo.addFlags(FrameInfo.FLAG_WINDOW_LAYOUT_CHANGED); in performTraversals() 2549 mChoreographer.removeFrameCallback(mRenderProfiler); in profileRendering() 2559 mChoreographer.postFrameCallback(mRenderProfiler); in profileRendering() 2564 mChoreographer.postFrameCallback(mRenderProfiler); in profileRendering() 2762 mChoreographer.getFrameTimeNanos() / TimeUtils.NANOS_PER_MS; in draw() 5835 mChoreographer.dump(prefix, writer); in dump() [all …]
|
D | View.java | 13983 attachInfo.mViewRootImpl.mChoreographer.postCallback( in postOnAnimation() 14007 attachInfo.mViewRootImpl.mChoreographer.postCallbackDelayed( in postOnAnimationDelayed() 14036 attachInfo.mViewRootImpl.mChoreographer.removeCallbacks( in removeCallbacks() 17823 mAttachInfo.mViewRootImpl.mChoreographer.postCallbackDelayed( in scheduleDrawable() 17844 mAttachInfo.mViewRootImpl.mChoreographer.removeCallbacks( in unscheduleDrawable() 17862 mAttachInfo.mViewRootImpl.mChoreographer.removeCallbacks( in unscheduleDrawable()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | RampAnimator.java | 30 private final Choreographer mChoreographer; field in RampAnimator 47 mChoreographer = Choreographer.getInstance(); in RampAnimator() 124 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, mAnimationCallback, null); in postAnimationCallback() 128 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION, mAnimationCallback, null); in cancelAnimationCallback() 134 final long frameTimeNanos = mChoreographer.getFrameTimeNanos();
|
D | DisplayPowerState.java | 54 private final Choreographer mChoreographer; field in DisplayPowerState 73 mChoreographer = Choreographer.getInstance(); in DisplayPowerState() 290 mChoreographer.postCallback(Choreographer.CALLBACK_TRAVERSAL, in scheduleColorFadeDraw()
|
/frameworks/base/core/java/android/animation/ |
D | AnimationHandler.java | 244 final Choreographer mChoreographer = Choreographer.getInstance(); field in AnimationHandler.MyFrameCallbackProvider 248 mChoreographer.postFrameCallback(callback); in postFrameCallback() 253 mChoreographer.postCallback(Choreographer.CALLBACK_COMMIT, runnable, null); in postCommitCallback() 258 return mChoreographer.getFrameTime(); in getFrameTime()
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | BackdropFrameRenderer.java | 52 private Choreographer mChoreographer; field in BackdropFrameRenderer 214 mChoreographer = Choreographer.getInstance(); in run() 222 mChoreographer = null; in run() 420 if (mChoreographer != null && !drawImmediate) { in pingRenderLocked() 421 mChoreographer.postFrameCallback(this); in pingRenderLocked()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityInputFilter.java | 96 final long frameTimeNanos = mChoreographer.getFrameTimeNanos(); 116 private final Choreographer mChoreographer; field in AccessibilityInputFilter 149 mChoreographer = Choreographer.getInstance(); in AccessibilityInputFilter() 273 mChoreographer.postCallback(Choreographer.CALLBACK_INPUT, in scheduleProcessBatchedEvents()
|
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/ |
D | ViewDataBinding.java | 207 private Choreographer mChoreographer; field in ViewDataBinding 234 mChoreographer = Choreographer.getInstance(); in ViewDataBinding() 453 mChoreographer.postFrameCallback(mFrameCallback); in requestRebind()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TaskPositioner.java | 249 mClientChannel, mService.mH.getLooper(), mService.mChoreographer); in register()
|
D | WindowManagerService.java | 634 final Choreographer mChoreographer = Choreographer.getInstance(); field in WindowManagerService 9773 mChoreographer.postFrameCallback(mAnimator.mAnimationFrameCallback); in scheduleAnimationLocked()
|
/frameworks/base/core/java/android/widget/ |
D | TextView.java | 10209 private final Choreographer mChoreographer; field in TextView.Marquee 10227 mChoreographer = Choreographer.getInstance(); in Marquee() 10241 mLastAnimationMs = mChoreographer.getFrameTime(); 10263 mChoreographer.removeFrameCallback(mTickCallback); in tick() 10267 long currentMs = mChoreographer.getFrameTime(); in tick() 10274 mChoreographer.postFrameCallbackDelayed(mRestartCallback, MARQUEE_DELAY); in tick() 10276 mChoreographer.postFrameCallback(mTickCallback); in tick() 10284 mChoreographer.removeFrameCallback(mStartCallback); in stop() 10285 mChoreographer.removeFrameCallback(mRestartCallback); in stop() 10286 mChoreographer.removeFrameCallback(mTickCallback); in stop() [all …]
|