Home
last modified time | relevance | path

Searched refs:PointerControllerInterface (Results 1 – 14 of 14) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/include/
H A DPointerControllerInterface.h36 class PointerControllerInterface {
38 PointerControllerInterface() { } in PointerControllerInterface() function
39 virtual ~PointerControllerInterface() { } in ~PointerControllerInterface()
H A DInputReaderBase.h372 virtual std::shared_ptr<PointerControllerInterface> obtainPointerController(
/aosp12/frameworks/native/services/inputflinger/reader/include/
H A DInputReaderContext.h31 class PointerControllerInterface; variable
49 virtual std::shared_ptr<PointerControllerInterface> getPointerController(int32_t deviceId) = 0;
H A DInputReader.h137 std::shared_ptr<PointerControllerInterface> getPointerController(int32_t deviceId)
209 std::weak_ptr<PointerControllerInterface> mPointerController;
210 std::shared_ptr<PointerControllerInterface> getPointerControllerLocked(int32_t deviceId)
/aosp12/frameworks/base/libs/input/
H A DMouseCursorController.h53 void fade(PointerControllerInterface::Transition transition);
54 void unfade(PointerControllerInterface::Transition transition);
H A DMouseCursorController.cpp158 void MouseCursorController::fade(PointerControllerInterface::Transition transition) { in fade()
165 if (transition == PointerControllerInterface::Transition::IMMEDIATE) { in fade()
175 void MouseCursorController::unfade(PointerControllerInterface::Transition transition) { in unfade()
182 if (transition == PointerControllerInterface::Transition::IMMEDIATE) { in unfade()
H A DPointerController.h44 class PointerController : public PointerControllerInterface {
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DCursorInputMapper.h30 class PointerControllerInterface; variable
111 std::shared_ptr<PointerControllerInterface> mPointerController;
H A DCursorInputMapper.cpp164 mPointerController->fade(PointerControllerInterface::Transition::IMMEDIATE); in configure()
345 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER); in sync()
363 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in sync()
H A DTouchInputMapper.cpp813 mPointerController->fade(PointerControllerInterface::Transition::IMMEDIATE); in configureSurface()
1435 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in reset()
1693 mPointerController->setPresentation(PointerControllerInterface::Presentation::SPOT); in updateTouchSpots()
1694 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in updateTouchSpots()
2452 mPointerController->unfade(PointerControllerInterface::Transition::GRADUAL); in dispatchPointerGestures()
2463 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in dispatchPointerGestures()
2469 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in dispatchPointerGestures()
2471 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in dispatchPointerGestures()
2646 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in abortPointerGestures()
3503 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in dispatchPointerSimple()
[all …]
H A DTouchInputMapper.h393 std::shared_ptr<PointerControllerInterface> mPointerController;
/aosp12/frameworks/native/services/inputflinger/reader/
H A DInputReader.cpp442 std::shared_ptr<PointerControllerInterface> InputReader::getPointerControllerLocked( in getPointerControllerLocked()
444 std::shared_ptr<PointerControllerInterface> controller = mPointerController.lock(); in getPointerControllerLocked()
454 std::shared_ptr<PointerControllerInterface> controller = mPointerController.lock(); in updatePointerDisplayLocked()
477 std::shared_ptr<PointerControllerInterface> controller = mPointerController.lock(); in fadePointerLocked()
479 controller->fade(PointerControllerInterface::Transition::GRADUAL); in fadePointerLocked()
925 std::shared_ptr<PointerControllerInterface> InputReader::ContextImpl::getPointerController( in getPointerController()
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp297 std::shared_ptr<PointerControllerInterface> obtainPointerController(int32_t deviceId) override;
648 std::shared_ptr<PointerControllerInterface> NativeInputManager::obtainPointerController( in obtainPointerController()
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp112 class FakePointerController : public PointerControllerInterface {
363 std::shared_ptr<PointerControllerInterface> obtainPointerController(int32_t deviceId) override { in obtainPointerController()