Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/
DPointerChoreographer.cpp78 PointerControllerInterface& controller) { in setIconForController()
133 PointerControllerInterface::ControllerType::TOUCH); in PointerChoreographer()
205 it->second->fade(PointerControllerInterface::Transition::GRADUAL); in fadeMouseCursorOnKeyPress()
258 pc.unfade(PointerControllerInterface::Transition::IMMEDIATE); in processMouseEventLocked()
275 pc.unfade(PointerControllerInterface::Transition::IMMEDIATE); in processTouchpadEventLocked()
286 pc.unfade(PointerControllerInterface::Transition::IMMEDIATE); in processTouchpadEventLocked()
321 PointerControllerInterface& pc = *it->second; in processDrawingTabletEventLocked()
329 pc.fade(PointerControllerInterface::Transition::IMMEDIATE); in processDrawingTabletEventLocked()
332 pc.unfade(PointerControllerInterface::Transition::IMMEDIATE); in processDrawingTabletEventLocked()
349 it->second->fade(PointerControllerInterface::Transition::GRADUAL); in processTouchscreenAndStylusEventLocked()
[all …]
DPointerChoreographer.h128 std::pair<ui::LogicalDisplayId /*displayId*/, PointerControllerInterface&>
173 ConstructorDelegate<std::function<std::shared_ptr<PointerControllerInterface>()>>;
185 std::map<ui::LogicalDisplayId, std::shared_ptr<PointerControllerInterface>>
187 std::map<DeviceId, std::shared_ptr<PointerControllerInterface>> mTouchPointersByDevice
189 std::map<DeviceId, std::shared_ptr<PointerControllerInterface>> mStylusPointersByDevice
191 std::map<DeviceId, std::shared_ptr<PointerControllerInterface>> mDrawingTabletPointersByDevice
/frameworks/native/services/inputflinger/include/
DPointerChoreographerPolicyInterface.h47 virtual std::shared_ptr<PointerControllerInterface> createPointerController(
48 PointerControllerInterface::ControllerType type) = 0;
DPointerControllerInterface.h51 class PointerControllerInterface {
53 PointerControllerInterface() {} in PointerControllerInterface() function
54 virtual ~PointerControllerInterface() {} in ~PointerControllerInterface()
/frameworks/base/libs/input/
DMouseCursorController.h51 void fade(PointerControllerInterface::Transition transition);
52 void unfade(PointerControllerInterface::Transition transition);
DMouseCursorController.cpp125 void MouseCursorController::fade(PointerControllerInterface::Transition transition) { in fade()
132 if (transition == PointerControllerInterface::Transition::IMMEDIATE) { in fade()
142 void MouseCursorController::unfade(PointerControllerInterface::Transition transition) { in unfade()
149 if (transition == PointerControllerInterface::Transition::IMMEDIATE) { in unfade()
DPointerController.h46 class PointerController : public PointerControllerInterface {
/frameworks/native/services/inputflinger/tests/
DFakePointerController.h31 class FakePointerController : public PointerControllerInterface {
DInterfaceMocks.h185 MOCK_METHOD(std::shared_ptr<PointerControllerInterface>, createPointerController,
186 (PointerControllerInterface::ControllerType), (override));
DPointerChoreographer_test.cpp34 using ControllerType = PointerControllerInterface::ControllerType;
580 pc->fade(PointerControllerInterface::Transition::IMMEDIATE); in TEST_F()
615 pc->fade(PointerControllerInterface::Transition::IMMEDIATE); in TEST_F()
654 auto pc = assertPointerControllerCreated(PointerControllerInterface::ControllerType::MOUSE); in TEST_F()
685 auto pc = assertPointerControllerCreated(PointerControllerInterface::ControllerType::MOUSE); in TEST_F()
/frameworks/base/libs/input/tests/
DPointerController_test.cpp364 public testing::WithParamInterface<PointerControllerInterface::ControllerType> {};
399 testing::Values(PointerControllerInterface::ControllerType::MOUSE,
400 PointerControllerInterface::ControllerType::STYLUS));
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp381 std::shared_ptr<PointerControllerInterface> createPointerController(
382 PointerControllerInterface::ControllerType type) override;
766 std::shared_ptr<PointerControllerInterface> NativeInputManager::createPointerController( in createPointerController()
767 PointerControllerInterface::ControllerType type) { in createPointerController()