Lines Matching refs:PointerController
47 void PointerController::DisplayInfoListener::onWindowInfosChanged( in onWindowInfosChanged()
57 void PointerController::DisplayInfoListener::onPointerControllerDestroyed() { in onPointerControllerDestroyed()
64 std::shared_ptr<PointerController> PointerController::create( in create()
68 std::shared_ptr<PointerController> controller; in create()
71 controller = std::shared_ptr<PointerController>( in create()
75 controller = std::shared_ptr<PointerController>( in create()
79 controller = std::shared_ptr<PointerController>( in create()
102 PointerController::PointerController(const sp<PointerControllerPolicyInterface>& policy, in PointerController() function in android::PointerController
104 : PointerController( in PointerController()
117 PointerController::PointerController(const sp<PointerControllerPolicyInterface>& policy, in PointerController() function in android::PointerController
131 PointerController::~PointerController() { in ~PointerController()
136 std::mutex& PointerController::getLock() const { in getLock()
140 std::optional<FloatRect> PointerController::getBounds() const { in getBounds()
144 void PointerController::move(float deltaX, float deltaY) { in move()
155 void PointerController::setPosition(float x, float y) { in setPosition()
166 FloatPoint PointerController::getPosition() const { in getPosition()
176 ui::LogicalDisplayId PointerController::getDisplayId() const { in getDisplayId()
180 void PointerController::fade(Transition transition) { in fade()
185 void PointerController::unfade(Transition transition) { in unfade()
190 void PointerController::setPresentation(Presentation presentation) { in setPresentation()
204 void PointerController::setSpots(const PointerCoords* spotCoords, const uint32_t* spotIdToIndex, in setSpots()
231 void PointerController::clearSpots() { in clearSpots()
236 void PointerController::clearSpotsLocked() { in clearSpotsLocked()
242 void PointerController::setInactivityTimeout(InactivityTimeout inactivityTimeout) { in setInactivityTimeout()
246 void PointerController::reloadPointerResources() { in reloadPointerResources()
255 if (mLocked.presentation == PointerController::Presentation::POINTER || in reloadPointerResources()
256 mLocked.presentation == PointerController::Presentation::STYLUS_HOVER) { in reloadPointerResources()
263 void PointerController::setDisplayViewport(const DisplayViewport& viewport) { in setDisplayViewport()
268 if (mLocked.presentation == PointerController::Presentation::POINTER || in setDisplayViewport()
269 mLocked.presentation == PointerController::Presentation::STYLUS_HOVER) { in setDisplayViewport()
279 void PointerController::updatePointerIcon(PointerIconStyle iconId) { in updatePointerIcon()
284 void PointerController::setCustomPointerIcon(const SpriteIcon& icon) { in setCustomPointerIcon()
289 void PointerController::setSkipScreenshotFlagForDisplay(ui::LogicalDisplayId displayId) { in setSkipScreenshotFlagForDisplay()
295 void PointerController::clearSkipScreenshotFlags() { in clearSkipScreenshotFlags()
301 void PointerController::doInactivityTimeout() { in doInactivityTimeout()
305 void PointerController::onDisplayViewportsUpdated(const std::vector<DisplayViewport>& viewports) { in onDisplayViewportsUpdated()
327 void PointerController::onDisplayInfosChangedLocked( in onDisplayInfosChangedLocked()
332 const ui::Transform& PointerController::getTransformForDisplayLocked( in getTransformForDisplayLocked()
341 std::string PointerController::dump() { in dump()
364 : PointerController(policy, looper, spriteController) { in MousePointerController()
365 PointerController::setPresentation(Presentation::POINTER); in MousePointerController()
377 : PointerController(policy, looper, spriteController) { in TouchPointerController()
378 PointerController::setPresentation(Presentation::SPOT); in TouchPointerController()
390 : PointerController(policy, looper, spriteController) { in StylusPointerController()
391 PointerController::setPresentation(Presentation::STYLUS_HOVER); in StylusPointerController()