/ohos5.0/foundation/multimodalinput/input/service/touch_event_normalize/test/src/ |
H A D | touch_event_normalize_test.cpp | 198 bool rotateSwitch = false; variable 199 ASSERT_TRUE(TOUCH_EVENT_HDR->SetTouchpadRotateSwitch(rotateSwitch) == RET_OK); 211 bool rotateSwitch = true; variable 212 TOUCH_EVENT_HDR->SetTouchpadRotateSwitch(rotateSwitch); 214 TOUCH_EVENT_HDR->GetTouchpadRotateSwitch(rotateSwitch); 215 ASSERT_TRUE(rotateSwitch == newRotateSwitch);
|
H A D | touchpad_transform_processor_test.cpp | 183 bool rotateSwitch = false; variable 184 ASSERT_TRUE(processor.SetTouchpadRotateSwitch(rotateSwitch) == RET_OK); 198 bool rotateSwitch = false; variable 199 processor.SetTouchpadRotateSwitch(rotateSwitch); 202 ASSERT_TRUE(rotateSwitch == newRotateSwitch);
|
/ohos5.0/foundation/multimodalinput/input/service/touch_event_normalize/src/ |
H A D | touch_event_normalize.cpp | 129 int32_t TouchEventNormalize::SetTouchpadRotateSwitch(bool rotateSwitch) const in SetTouchpadRotateSwitch() 131 return TouchPadTransformProcessor::SetTouchpadRotateSwitch(rotateSwitch); in SetTouchpadRotateSwitch() 134 void TouchEventNormalize::GetTouchpadRotateSwitch(bool &rotateSwitch) const in GetTouchpadRotateSwitch() 136 TouchPadTransformProcessor::GetTouchpadRotateSwitch(rotateSwitch); in GetTouchpadRotateSwitch()
|
H A D | touchpad_transform_processor.cpp | 552 int32_t TouchPadTransformProcessor::SetTouchpadRotateSwitch(bool rotateSwitch) in SetTouchpadRotateSwitch() argument 555 if (PutConfigDataToDatabase(name, rotateSwitch) != RET_OK) { in SetTouchpadRotateSwitch() 561 rotateSwitch); in SetTouchpadRotateSwitch() 565 void TouchPadTransformProcessor::GetTouchpadRotateSwitch(bool &rotateSwitch) in GetTouchpadRotateSwitch() argument 568 GetConfigDataFromDatabase(name, rotateSwitch); in GetTouchpadRotateSwitch()
|
/ohos5.0/foundation/multimodalinput/input/service/touch_event_normalize/include/ |
H A D | touch_event_normalize.h | 59 int32_t SetTouchpadRotateSwitch(bool rotateSwitch) const; 60 void GetTouchpadRotateSwitch(bool &rotateSwitch) const;
|
H A D | touchpad_transform_processor.h | 83 static int32_t SetTouchpadRotateSwitch(bool rotateSwitch); 84 static void GetTouchpadRotateSwitch(bool &rotateSwitch);
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | input_manager.cpp | 479 int32_t InputManager::SetTouchpadRotateSwitch(bool rotateSwitch) in SetTouchpadRotateSwitch() argument 481 return InputMgrImpl.SetTouchpadRotateSwitch(rotateSwitch); in SetTouchpadRotateSwitch() 484 int32_t InputManager::GetTouchpadRotateSwitch(bool &rotateSwitch) in GetTouchpadRotateSwitch() argument 486 return InputMgrImpl.GetTouchpadRotateSwitch(rotateSwitch); in GetTouchpadRotateSwitch()
|
/ohos5.0/foundation/multimodalinput/input/service/module_loader/include/ |
H A D | mmi_service.h | 128 int32_t SetTouchpadRotateSwitch(bool rotateSwitch) override; 129 int32_t GetTouchpadRotateSwitch(bool &rotateSwitch) override; 193 int32_t ReadTouchpadRotateSwitch(bool &rotateSwitch);
|
/ohos5.0/foundation/multimodalinput/input/service/connect_manager/include/ |
H A D | multimodal_input_connect_manager.h | 118 int32_t SetTouchpadRotateSwitch(bool rotateSwitch); 119 int32_t GetTouchpadRotateSwitch(bool &rotateSwitch);
|
H A D | i_multimodal_input_connect.h | 129 virtual int32_t SetTouchpadRotateSwitch(bool rotateSwitch) = 0; 130 virtual int32_t GetTouchpadRotateSwitch(bool &rotateSwitch) = 0;
|
H A D | multimodal_input_connect_proxy.h | 114 int32_t SetTouchpadRotateSwitch(bool rotateSwitch) override; 115 int32_t GetTouchpadRotateSwitch(bool &rotateSwitch) override;
|
/ohos5.0/foundation/multimodalinput/input/interfaces/native/innerkits/proxy/include/ |
H A D | input_manager.h | 834 int32_t SetTouchpadRotateSwitch(bool rotateSwitch); 842 int32_t GetTouchpadRotateSwitch(bool &rotateSwitch);
|
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/pointer/src/ |
H A D | js_pointer_manager.cpp | 960 napi_value JsPointerManager::SetTouchpadRotateSwitch(napi_env env, bool rotateSwitch, napi_value ha… in SetTouchpadRotateSwitch() argument 963 int32_t ret = InputManager::GetInstance()->SetTouchpadRotateSwitch(rotateSwitch); in SetTouchpadRotateSwitch() 970 bool rotateSwitch = true; in GetTouchpadRotateSwitch() local 971 int32_t ret = InputManager::GetInstance()->GetTouchpadRotateSwitch(rotateSwitch); in GetTouchpadRotateSwitch() 972 return GetTouchpadBoolData(env, handle, rotateSwitch, ret); in GetTouchpadRotateSwitch()
|
H A D | js_pointer_context.cpp | 1554 auto func = [jsPointerMgr] (napi_env env, bool rotateSwitch, napi_value handle) -> napi_value { in SetTouchpadRotateSwitch() argument 1555 return jsPointerMgr->SetTouchpadRotateSwitch(env, rotateSwitch, handle); in SetTouchpadRotateSwitch()
|
/ohos5.0/foundation/multimodalinput/input/service/connect_manager/src/ |
H A D | multimodal_input_connect_manager.cpp | 678 int32_t MultimodalInputConnectManager::SetTouchpadRotateSwitch(bool rotateSwitch) in SetTouchpadRotateSwitch() argument 681 return multimodalInputConnectService_->SetTouchpadRotateSwitch(rotateSwitch); in SetTouchpadRotateSwitch() 684 int32_t MultimodalInputConnectManager::GetTouchpadRotateSwitch(bool &rotateSwitch) in GetTouchpadRotateSwitch() argument 687 return multimodalInputConnectService_->GetTouchpadRotateSwitch(rotateSwitch); in GetTouchpadRotateSwitch()
|
H A D | multimodal_input_connect_stub.cpp | 2106 bool rotateSwitch = true; in StubSetTouchpadRotateSwitch() local 2107 READBOOL(data, rotateSwitch, IPC_PROXY_DEAD_OBJECT_ERR); in StubSetTouchpadRotateSwitch() 2108 ret = SetTouchpadRotateSwitch(rotateSwitch); in StubSetTouchpadRotateSwitch() 2125 bool rotateSwitch = true; in StubGetTouchpadRotateSwitch() local 2126 ret = GetTouchpadRotateSwitch(rotateSwitch); in StubGetTouchpadRotateSwitch() 2131 WRITEBOOL(reply, rotateSwitch, IPC_STUB_WRITE_PARCEL_ERR); in StubGetTouchpadRotateSwitch() 2132 MMI_HILOGD("Touchpad rotate switch:%{public}d, ret:%{public}d", rotateSwitch, ret); in StubGetTouchpadRotateSwitch()
|
H A D | multimodal_input_connect_proxy.cpp | 1729 int32_t MultimodalInputConnectProxy::SetTouchpadRotateSwitch(bool rotateSwitch) in SetTouchpadRotateSwitch() argument 1731 …return SetTouchpadBoolData(rotateSwitch, static_cast<uint32_t>(MultimodalinputConnectInterfaceCode… in SetTouchpadRotateSwitch() 1735 int32_t MultimodalInputConnectProxy::GetTouchpadRotateSwitch(bool &rotateSwitch) in GetTouchpadRotateSwitch() argument 1737 …return GetTouchpadBoolData(rotateSwitch, static_cast<uint32_t>(MultimodalinputConnectInterfaceCode… in GetTouchpadRotateSwitch()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/event_handler/include/ |
H A D | input_manager_impl.h | 171 int32_t SetTouchpadRotateSwitch(bool rotateSwitch); 172 int32_t GetTouchpadRotateSwitch(bool &rotateSwitch);
|
/ohos5.0/foundation/multimodalinput/input/service/module_loader/src/ |
H A D | mmi_service.cpp | 2148 int32_t MMIService::ReadTouchpadRotateSwitch(bool &rotateSwitch) in ReadTouchpadRotateSwitch() argument 2150 TOUCH_EVENT_HDR->GetTouchpadRotateSwitch(rotateSwitch); in ReadTouchpadRotateSwitch() 2400 int32_t MMIService::SetTouchpadRotateSwitch(bool rotateSwitch) in SetTouchpadRotateSwitch() argument 2405 [rotateSwitch] { in SetTouchpadRotateSwitch() 2406 …:OHOS::DelayedSingleton<TouchEventNormalize>::GetInstance()->SetTouchpadRotateSwitch(rotateSwitch); in SetTouchpadRotateSwitch() 2417 int32_t MMIService::GetTouchpadRotateSwitch(bool &rotateSwitch) in GetTouchpadRotateSwitch() argument 2422 [this, &rotateSwitch] { in GetTouchpadRotateSwitch() 2423 return this->ReadTouchpadRotateSwitch(rotateSwitch); in GetTouchpadRotateSwitch()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/pointer/include/ |
H A D | js_pointer_manager.h | 105 … napi_value SetTouchpadRotateSwitch(napi_env env, bool rotateSwitch, napi_value handle = nullptr);
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/test/ |
H A D | input_manager_pointer_test.cpp | 1646 bool rotateSwitch = false; variable 1647 ASSERT_TRUE(InputManager::GetInstance()->SetTouchpadRotateSwitch(rotateSwitch) == RET_OK); 1659 bool rotateSwitch = true; variable 1660 InputManager::GetInstance()->SetTouchpadRotateSwitch(rotateSwitch); 1663 ASSERT_TRUE(rotateSwitch == newRotateSwitch);
|
H A D | input_manager_test.cpp | 3033 bool rotateSwitch = false; variable 3034 ASSERT_TRUE(InputManager::GetInstance()->SetTouchpadRotateSwitch(rotateSwitch) == RET_OK); 3046 bool rotateSwitch = true; variable 3047 InputManager::GetInstance()->SetTouchpadRotateSwitch(rotateSwitch); 3050 ASSERT_TRUE(rotateSwitch == newRotateSwitch);
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/event_handler/src/ |
H A D | input_manager_impl.cpp | 2006 int32_t InputManagerImpl::SetTouchpadRotateSwitch(bool rotateSwitch) in SetTouchpadRotateSwitch() argument 2011 int32_t ret = MULTIMODAL_INPUT_CONNECT_MGR->SetTouchpadRotateSwitch(rotateSwitch); in SetTouchpadRotateSwitch() 2022 int32_t InputManagerImpl::GetTouchpadRotateSwitch(bool &rotateSwitch) in GetTouchpadRotateSwitch() argument 2027 int32_t ret = MULTIMODAL_INPUT_CONNECT_MGR->GetTouchpadRotateSwitch(rotateSwitch); in GetTouchpadRotateSwitch()
|
/ohos5.0/foundation/multimodalinput/input/service/connect_manager/test/ |
H A D | multimodal_input_connect_stub_ex_test.cpp | 227 int32_t SetTouchpadRotateSwitch(bool rotateSwitch) override in SetTouchpadRotateSwitch() argument 229 rotateSwitch_ = rotateSwitch; in SetTouchpadRotateSwitch() 232 …int32_t GetTouchpadRotateSwitch(bool &rotateSwitch) override { return static_cast<int32_t>(rotateS… in GetTouchpadRotateSwitch() argument
|