Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/include/
DPointerControllerInterface.h36 class PointerControllerInterface {
38 PointerControllerInterface() { } in PointerControllerInterface() function
39 virtual ~PointerControllerInterface() { } in ~PointerControllerInterface()
DInputReaderBase.h377 virtual std::shared_ptr<PointerControllerInterface> obtainPointerController(
/frameworks/native/services/inputflinger/reader/include/
DInputReaderContext.h31 class PointerControllerInterface; variable
49 virtual std::shared_ptr<PointerControllerInterface> getPointerController(int32_t deviceId) = 0;
DInputReader.h138 std::shared_ptr<PointerControllerInterface> getPointerController(int32_t deviceId)
210 std::weak_ptr<PointerControllerInterface> mPointerController;
211 std::shared_ptr<PointerControllerInterface> getPointerControllerLocked(int32_t deviceId)
/frameworks/base/libs/input/
DMouseCursorController.h53 void fade(PointerControllerInterface::Transition transition);
54 void unfade(PointerControllerInterface::Transition transition);
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()
DPointerController.h44 class PointerController : public PointerControllerInterface {
/frameworks/native/services/inputflinger/reader/mapper/
DCursorInputMapper.h30 class PointerControllerInterface; variable
120 std::shared_ptr<PointerControllerInterface> mPointerController;
DCursorInputMapper.cpp172 mPointerController->fade(PointerControllerInterface::Transition::IMMEDIATE); in configure()
352 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER); in sync()
362 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in sync()
DTouchInputMapper.cpp1055 mPointerController->fade(PointerControllerInterface::Transition::IMMEDIATE); in configureInputDevice()
1441 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in reset()
1702 mPointerController->setPresentation(PointerControllerInterface::Presentation::SPOT); in updateTouchSpots()
1703 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in updateTouchSpots()
2447 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER); in dispatchPointerGestures()
2459 mPointerController->setPresentation(PointerControllerInterface::Presentation::POINTER); in dispatchPointerGestures()
2469 mPointerController->unfade(PointerControllerInterface::Transition::GRADUAL); in dispatchPointerGestures()
2480 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in dispatchPointerGestures()
2486 mPointerController->fade(PointerControllerInterface::Transition::GRADUAL); in dispatchPointerGestures()
2488 mPointerController->unfade(PointerControllerInterface::Transition::IMMEDIATE); in dispatchPointerGestures()
[all …]
DTouchInputMapper.h404 std::shared_ptr<PointerControllerInterface> mPointerController;
/frameworks/native/services/inputflinger/reader/
DInputReader.cpp436 std::shared_ptr<PointerControllerInterface> InputReader::getPointerControllerLocked( in getPointerControllerLocked()
438 std::shared_ptr<PointerControllerInterface> controller = mPointerController.lock(); in getPointerControllerLocked()
448 std::shared_ptr<PointerControllerInterface> controller = mPointerController.lock(); in updatePointerDisplayLocked()
471 std::shared_ptr<PointerControllerInterface> controller = mPointerController.lock(); in fadePointerLocked()
473 controller->fade(PointerControllerInterface::Transition::GRADUAL); in fadePointerLocked()
928 std::shared_ptr<PointerControllerInterface> InputReader::ContextImpl::getPointerController( in getPointerController()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp295 std::shared_ptr<PointerControllerInterface> obtainPointerController(int32_t deviceId) override;
646 std::shared_ptr<PointerControllerInterface> NativeInputManager::obtainPointerController( in obtainPointerController()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp166 class FakePointerController : public PointerControllerInterface {
417 std::shared_ptr<PointerControllerInterface> obtainPointerController( in obtainPointerController()