Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
DInteractionJankMonitorWrapper.java68 public static void begin(View v, @CujType int cujType) { in begin() argument
70 InteractionJankMonitor.getInstance().begin(v, cujType); in begin()
80 public static void begin(View v, @CujType int cujType, long timeout) { in begin() argument
83 new Configuration.Builder(cujType) in begin()
94 public static void end(@CujType int cujType) { in end() argument
96 InteractionJankMonitor.getInstance().end(cujType); in end()
102 public static void cancel(@CujType int cujType) { in cancel() argument
104 InteractionJankMonitor.getInstance().cancel(cujType); in cancel()
/frameworks/base/core/java/com/android/internal/jank/
DInteractionJankMonitor.java368 private void removeTimeout(@CujType int cujType) { in removeTimeout() argument
370 Runnable timeout = mTimeoutActions.get(cujType); in removeTimeout()
373 mTimeoutActions.remove(cujType); in removeTimeout()
385 public boolean begin(View v, @CujType int cujType) { in begin() argument
388 new Configuration.Builder(cujType) in begin()
414 int cujType = conf.mCujType; in beginInternal() local
418 Log.d(TAG, "Skip monitoring cuj: " + getNameOfCuj(cujType) in beginInternal()
424 FrameTracker tracker = getTracker(cujType); in beginInternal()
429 tracker = createFrameTracker(conf, new Session(cujType, conf.mTag)); in beginInternal()
430 mRunningTrackers.put(cujType, tracker); in beginInternal()
[all …]
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DGhostedViewLaunchAnimatorController.kt39 private val cujType: Int? = null constant in com.android.systemui.animation.GhostedViewLaunchAnimatorController
143 cujType?.let { InteractionJankMonitor.getInstance().begin(ghostedView, it) } in onLaunchAnimationStart()
191 cujType?.let { InteractionJankMonitor.getInstance().end(it) } in onLaunchAnimationEnd()
DActivityLaunchAnimator.kt241 fun fromView(view: View, cujType: Int? = null): Controller? { in <lambda>()
252 return GhostedViewLaunchAnimatorController(view, cujType) in <lambda>()