Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardInputView.java65 protected AnimatorListenerAdapter getAnimationListener(int cuj) { in getAnimationListener() argument
77 InteractionJankMonitor.getInstance().cancel(cuj); in getAnimationListener()
79 InteractionJankMonitor.getInstance().end(cuj); in getAnimationListener()
85 InteractionJankMonitor.getInstance().begin(KeyguardInputView.this, cuj); in getAnimationListener()
DKeyguardSecurityContainer.java531 private void beginJankInstrument(int cuj) { in beginJankInstrument() argument
534 InteractionJankMonitor.getInstance().begin(securityView, cuj); in beginJankInstrument()
537 private void endJankInstrument(int cuj) { in endJankInstrument() argument
538 InteractionJankMonitor.getInstance().end(cuj); in endJankInstrument()
541 private void cancelJankInstrument(int cuj) { in cancelJankInstrument() argument
542 InteractionJankMonitor.getInstance().cancel(cuj); in cancelJankInstrument()
/frameworks/base/core/java/com/android/internal/jank/
DInteractionJankMonitor.java481 private FrameTracker getTracker(@CujType int cuj) { in getTracker() argument
483 return mRunningTrackers.get(cuj); in getTracker()
487 private void removeTracker(@CujType int cuj) { in removeTracker() argument
489 mRunningTrackers.remove(cuj); in removeTracker()
638 public Builder(@CujType int cuj) { in Builder() argument
639 mAttrCujType = cuj; in Builder()
681 private Configuration(@CujType int cuj, View view, String tag, long timeout) { in Configuration() argument
682 mCujType = cuj; in Configuration()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPanelViewController.java1399 private void beginJankMonitoring(int cuj) { in beginJankMonitoring() argument
1401 new InteractionJankMonitor.Configuration.Builder(cuj) in beginJankMonitoring()
1407 private void endJankMonitoring(int cuj) { in endJankMonitoring() argument
1408 InteractionJankMonitor.getInstance().end(cuj); in endJankMonitoring()
1411 private void cancelJankMonitoring(int cuj) { in cancelJankMonitoring() argument
1412 InteractionJankMonitor.getInstance().cancel(cuj); in cancelJankMonitoring()