/frameworks/base/tests/ChoreographerTests/src/main/java/android/view/choreographertests/ |
D | AttachedChoreographerTest.java | 152 mChoreographer = sc.getChoreographer(); in testCreateChoreographer() 156 Choreographer choreographer1 = sc1.getChoreographer(); in testCreateChoreographer() 159 assertEquals(choreographer1, sc1.getChoreographer()); in testCreateChoreographer() 160 assertEquals(choreographer1, sc1.getChoreographer(Looper.myLooper())); in testCreateChoreographer() 161 assertEquals(choreographer1, sc1.getChoreographer(Looper.getMainLooper())); in testCreateChoreographer() 162 assertThrows(IllegalStateException.class, () -> sc1.getChoreographer(testLooper)); in testCreateChoreographer() 166 Choreographer choreographer2 = sc2.getChoreographer(Looper.myLooper()); in testCreateChoreographer() 169 assertEquals(choreographer2, sc2.getChoreographer(Looper.myLooper())); in testCreateChoreographer() 170 assertEquals(choreographer2, sc2.getChoreographer(Looper.getMainLooper())); in testCreateChoreographer() 171 assertEquals(choreographer2, sc2.getChoreographer()); in testCreateChoreographer() [all …]
|
/frameworks/native/services/inputflinger/ |
D | InputManager.h | 95 virtual PointerChoreographerInterface& getChoreographer() = 0; 130 PointerChoreographerInterface& getChoreographer() override;
|
D | InputManager.cpp | 210 PointerChoreographerInterface& InputManager::getChoreographer() { in getChoreographer() function in android::InputManager
|
/frameworks/native/libs/gui/include/gui/ |
D | SurfaceControl.h | 85 std::shared_ptr<Choreographer> getChoreographer();
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowAnimator.java | 285 Choreographer getChoreographer() { in getChoreographer() method in WindowAnimator
|
D | TaskPositioner.java | 216 mService.mAnimator.getChoreographer(), this::onInputEvent); in register()
|
/frameworks/native/libs/gui/ |
D | SurfaceControl.cpp | 196 std::shared_ptr<Choreographer> SurfaceControl::getChoreographer() { in getChoreographer() function in android::SurfaceControl
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 551 mInputManager->getChoreographer().setDisplayViewports(viewports); in setDisplayViewports() 1113 mInputManager->getChoreographer().setFocusedDisplay(displayId); in notifyFocusedDisplayChanged() 1160 mInputManager->getChoreographer().setDefaultMouseDisplayId(displayId); in setPointerDisplayId() 1313 mInputManager->getChoreographer().setShowTouchesEnabled(enabled); in setShowTouches() 1346 return mInputManager->getChoreographer().setPointerIcon(std::move(icon), displayId, deviceId); in setPointerIcon() 1350 mInputManager->getChoreographer().setPointerIconVisibility(displayId, visible); in setPointerIconVisibility() 1405 return mInputManager->getChoreographer().getViewportForPointerDevice(associatedDisplayId); in getPointerViewportForAssociatedDisplay() 1722 return mInputManager->getChoreographer().getMouseCursorPosition(displayId); in getMouseCursorPosition() 1726 mInputManager->getChoreographer().setStylusPointerIconEnabled(enabled); in setStylusPointerIconEnabled()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceControl.java | 1457 public @NonNull Choreographer getChoreographer() { in getChoreographer() method in SurfaceControl 1461 return getChoreographer(Looper.myLooper()); in getChoreographer() 1481 public @NonNull Choreographer getChoreographer(@NonNull Looper looper) { in getChoreographer() method in SurfaceControl
|
/frameworks/base/native/android/ |
D | surface_control.cpp | 192 return reinterpret_cast<AChoreographer*>(surfaceControl->getChoreographer().get()); in ASurfaceControl_getChoreographer()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | SystemServicesTestRule.java | 578 wm.mAnimator.getChoreographer().postFrameCallback(time -> {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/ |
D | EdgeBackGestureHandler.java | 687 mUiThreadContext.getChoreographer(), this::onInputEvent); in updateIsEnabledInner()
|
/frameworks/base/core/api/ |
D | test-current.txt | 3700 method @NonNull public android.view.Choreographer getChoreographer(); 3701 method @NonNull public android.view.Choreographer getChoreographer(@NonNull android.os.Looper);
|