Home
last modified time | relevance | path

Searched refs:isPointDown (Results 1 - 22 of 22) sorted by relevance

/foundation/window/window_manager/wm/src/
H A Dwindow_input_channel.cpp123 bool isPointDown = action == MMI::PointerEvent::POINTER_ACTION_DOWN || in HandlePointerEvent() local
131 if (isPointDown && isValidPointItem) { in HandlePointerEvent()
H A Dwindow_extension_session_impl.cpp1146 bool isPointDown = (action == MMI::PointerEvent::POINTER_ACTION_DOWN || in ConsumePointerEvent() local
1148 if ((property_->GetUIExtensionUsage() == UIExtensionUsage::MODAL) && isPointDown) { in ConsumePointerEvent()
H A Dwindow_adapter.cpp226 void WindowAdapter::ProcessPointDown(uint32_t windowId, bool isPointDown) in ProcessPointDown() argument
232 wmsProxy->ProcessPointDown(windowId, isPointDown); in ProcessPointDown()
H A Dwindow_scene_session_impl.cpp819 bool isPointDown = (action == MMI::PointerEvent::POINTER_ACTION_DOWN || in ConsumePointerEventInner() local
825 if (isPointDown) { in ConsumePointerEventInner()
855 if (isPointDown || isPointUp) { in ConsumePointerEventInner()
/foundation/window/window_manager/test/common/mock/
H A Dmock_window_adapter.h39 MOCK_METHOD2(ProcessPointDown, void(uint32_t windowId, bool isPointDown));
/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_manager_stub_impl.h58 void ProcessPointDown(uint32_t windowId, bool isPointDown){}; in ProcessPointDown() argument
H A Dwindow_manager_proxy_test.cpp359 bool isPointDown = true; in HWTEST_F() local
363 windowManagerProxy_->ProcessPointDown(windowId, isPointDown); in HWTEST_F()
H A Dwindow_controller_test.cpp1214 bool isPointDown = true; in HWTEST_F() local
1215 WMError res = windowController_->ProcessPointDown(10, isPointDown); in HWTEST_F()
1219 res = windowController_->ProcessPointDown(windowId, isPointDown); in HWTEST_F()
1223 res = windowController_->ProcessPointDown(windowId, isPointDown); in HWTEST_F()
1250 bool isPointDown = true; in HWTEST_F() local
1252 WMError res = windowController_->ProcessPointDown(windowId, isPointDown); in HWTEST_F()
1255 isPointDown = false; in HWTEST_F()
1256 res = windowController_->ProcessPointDown(windowId, isPointDown); in HWTEST_F()
H A Dwindow_manager_service_test.cpp713 bool isPointDown = false; in HWTEST_F() local
715 wms->ProcessPointDown(windowId, isPointDown); in HWTEST_F()
/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_proxy.h45 void ProcessPointDown(uint32_t windowId, bool isPointDown) override;
H A Dwindow_manager_interface.h106 virtual void ProcessPointDown(uint32_t windowId, bool isPointDown) = 0;
/foundation/window/window_manager/wmserver/src/zidl/
H A Dwindow_manager_stub.cpp170 bool isPointDown = false; in OnRemoteRequest() local
171 if (!data.ReadBool(isPointDown)) { in OnRemoteRequest()
174 ProcessPointDown(windowId, isPointDown); in OnRemoteRequest()
H A Dwindow_manager_proxy.cpp379 void WindowManagerProxy::ProcessPointDown(uint32_t windowId, bool isPointDown) in ProcessPointDown() argument
392 if (!data.WriteBool(isPointDown)) { in ProcessPointDown()
393 WLOGFE("Write isPointDown failed"); in ProcessPointDown()
/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_adapter_test.cpp208 bool isPointDown = false; in HWTEST_F() local
211 windowAdapter.ProcessPointDown(windowId, isPointDown); in HWTEST_F()
/foundation/window/window_manager/wmserver/include/
H A Dwindow_controller.h57 WMError ProcessPointDown(uint32_t windowId, bool isPointDown);
H A Dwindow_manager_service.h104 void ProcessPointDown(uint32_t windowId, bool isPointDown) override;
/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscene_session_manager_interface.h195 void ProcessPointDown(uint32_t windowId, bool isPointDown) override {}
/foundation/window/window_manager/wm/include/
H A Dwindow_adapter.h53 virtual void ProcessPointDown(uint32_t windowId, bool isPointDown = true);
/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp1248 void WindowManagerService::ProcessPointDown(uint32_t windowId, bool isPointDown) in ProcessPointDown() argument
1250 auto task = [this, windowId, isPointDown]() { in ProcessPointDown()
1251 windowController_->ProcessPointDown(windowId, isPointDown); in ProcessPointDown()
H A Dwindow_controller.cpp1149 WMError WindowController::ProcessPointDown(uint32_t windowId, bool isPointDown) in ProcessPointDown() argument
1164 if (isPointDown) { in ProcessPointDown()
/foundation/window/window_manager/window_scene/session/host/src/
H A Dsession.cpp1908 bool isPointDown = (pointerAction == MMI::PointerEvent::POINTER_ACTION_DOWN) || in TransferPointerEvent() local
1911 if (CheckDialogOnForeground() && isPointDown) { in TransferPointerEvent()
1922 if (parentSession && parentSession->CheckDialogOnForeground() && isPointDown) { in TransferPointerEvent()
H A Dscene_session.cpp1963 bool isPointDown = (action == MMI::PointerEvent::POINTER_ACTION_DOWN || in TransferPointerEvent() local
1965 if (specificCallback_ != nullptr && specificCallback_->onSessionTouchOutside_ != nullptr && isPointDown) { in TransferPointerEvent()
1986 if (CheckDialogOnForeground() && isPointDown) { in TransferPointerEvent()

Completed in 57 milliseconds