/ohos5.0/foundation/multimodalinput/input/service/key_event_normalize/test/ |
H A D | key_event_normalize_test.cpp | 318 bool isShield = true; variable 322 isShield = true; 337 bool isShield = false; variable 341 isShield = false; 355 bool isShield = true; variable 370 bool isShield = false; variable 385 bool isShield = false; variable 400 bool isShield = false; variable 415 bool isShield = false; variable 430 bool isShield = false; variable [all …]
|
/ohos5.0/foundation/multimodalinput/input/service/key_event_normalize/src/ |
H A D | key_event_normalize.cpp | 153 int32_t KeyEventNormalize::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 157 lastShieldMode_, shieldMode, isShield); in SetShieldStatus() 159 if (isShield) { in SetShieldStatus() 180 iter->second = isShield; in SetShieldStatus() 182 lastShieldMode_, shieldMode, isShield); in SetShieldStatus() 186 int32_t KeyEventNormalize::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 195 isShield = iter->second; in GetShieldStatus() 197 lastShieldMode_, shieldMode, isShield); in GetShieldStatus()
|
/ohos5.0/foundation/multimodalinput/input/service/key_event_normalize/include/ |
H A D | key_event_normalize.h | 34 int32_t SetShieldStatus(int32_t shieldMode, bool isShield); 35 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield);
|
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/input_consumer/src/ |
H A D | js_register_module.cpp | 375 bool isShield = true; in SetShieldStatus() local 376 CHKRP(napi_get_value_bool(env, argv[1], &isShield), GET_VALUE_BOOL); in SetShieldStatus() 378 int32_t errCode = InputManager::GetInstance()->SetShieldStatus(shieldMode, isShield); in SetShieldStatus() 411 bool isShield { false }; in GetShieldStatus() local 412 auto errCode = InputManager::GetInstance()->GetShieldStatus(shieldMode, isShield); in GetShieldStatus() 415 NAPI_CALL(env, napi_get_boolean(env, isShield, &result)); in GetShieldStatus()
|
/ohos5.0/docs/zh-cn/application-dev/device/input/ |
H A D | input-overview.md | 21 …| setShieldStatus(shieldMode: ShieldMode, isShield: boolean): void | 设置屏蔽按键拦截状态。 |ohos.permission.…
|
H A D | inputconsumer-guidelines.md | 21 | setShieldStatus(shieldMode: ShieldMode, isShield: boolean): void | 设置屏蔽按键拦截状态。 |
|
/ohos5.0/foundation/multimodalinput/input/service/message_handle/include/ |
H A D | server_msg_handler.h | 98 int32_t SetShieldStatus(int32_t shieldMode, bool isShield); 99 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield);
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-input-kit/ |
H A D | js-apis-inputconsumer-sys.md | 108 setShieldStatus(shieldMode: ShieldMode, isShield: boolean): void 121 | isShield | boolean | 是 | 屏蔽类型生效状态,true代表屏蔽类型生效,flase代表不生效。 |
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | input_manager.cpp | 529 int32_t InputManager::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 531 return InputMgrImpl.SetShieldStatus(shieldMode, isShield); in SetShieldStatus() 534 int32_t InputManager::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 536 return InputMgrImpl.GetShieldStatus(shieldMode, isShield); in GetShieldStatus()
|
/ohos5.0/foundation/multimodalinput/input/service/connect_manager/include/ |
H A D | multimodal_input_connect_manager.h | 122 int32_t SetShieldStatus(int32_t shieldMode, bool isShield); 123 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield);
|
H A D | i_multimodal_input_connect.h | 133 virtual int32_t SetShieldStatus(int32_t shieldMode, bool isShield) = 0; 134 virtual int32_t GetShieldStatus(int32_t shieldMode, bool &isShield) = 0;
|
H A D | multimodal_input_connect_proxy.h | 118 int32_t SetShieldStatus(int32_t shieldMode, bool isShield) override; 119 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield) override;
|
/ohos5.0/foundation/multimodalinput/input/service/message_handle/test/ |
H A D | server_msg_handler_test.cpp | 121 bool isShield = false; variable 122 int32_t result = servermsghandler.SetShieldStatus(shieldMode, isShield); 137 bool isShield = true; variable 138 int32_t result = servermsghandler.SetShieldStatus(shieldMode, isShield); 153 bool isShield = false; variable 154 int32_t result = servermsghandler.GetShieldStatus(shieldMode, isShield); 169 bool isShield = true; variable 170 int32_t result = servermsghandler.GetShieldStatus(shieldMode, isShield);
|
/ohos5.0/foundation/multimodalinput/input/interfaces/native/innerkits/proxy/include/ |
H A D | input_manager.h | 792 int32_t SetShieldStatus(int32_t shieldMode, bool isShield); 802 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield);
|
/ohos5.0/docs/en/application-dev/device/input/ |
H A D | input-overview.md | 21 …| setShieldStatus(shieldMode: ShieldMode, isShield: boolean): void | Sets the key shielding status…
|
H A D | inputconsumer-guidelines.md | 21 | setShieldStatus(shieldMode: ShieldMode, isShield: boolean): void | Sets the key shielding status.|
|
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/ |
H A D | js-apis-inputconsumer-sys.md | 108 setShieldStatus(shieldMode: ShieldMode, isShield: boolean): void 121 | isShield | boolean | Yes | Whether to enable key shielding. The value **true** means to enable…
|
/ohos5.0/foundation/multimodalinput/input/service/connect_manager/src/ |
H A D | multimodal_input_connect_manager.cpp | 704 int32_t MultimodalInputConnectManager::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 708 return multimodalInputConnectService_->SetShieldStatus(shieldMode, isShield); in SetShieldStatus() 711 int32_t MultimodalInputConnectManager::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 715 return multimodalInputConnectService_->GetShieldStatus(shieldMode, isShield); in GetShieldStatus()
|
H A D | multimodal_input_connect_proxy.cpp | 1753 int32_t MultimodalInputConnectProxy::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 1763 WRITEBOOL(data, isShield, ERR_INVALID_VALUE); in SetShieldStatus() 1777 int32_t MultimodalInputConnectProxy::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 1796 READBOOL(reply, isShield, ERR_INVALID_VALUE); in GetShieldStatus()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/event_handler/include/ |
H A D | input_manager_impl.h | 192 int32_t SetShieldStatus(int32_t shieldMode, bool isShield); 193 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield);
|
/ohos5.0/foundation/multimodalinput/input/service/message_handle/src/ |
H A D | server_msg_handler.cpp | 778 int32_t ServerMsgHandler::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 780 return KeyEventHdr->SetShieldStatus(shieldMode, isShield); in SetShieldStatus() 783 int32_t ServerMsgHandler::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 785 return KeyEventHdr->GetShieldStatus(shieldMode, isShield); in GetShieldStatus()
|
/ohos5.0/foundation/multimodalinput/input/service/module_loader/include/ |
H A D | mmi_service.h | 132 int32_t SetShieldStatus(int32_t shieldMode, bool isShield) override; 133 int32_t GetShieldStatus(int32_t shieldMode, bool &isShield) override;
|
/ohos5.0/foundation/multimodalinput/input/service/module_loader/test/ |
H A D | mmi_service_test.cpp | 1121 bool isShield = 0; variable 1122 int32_t ret = mmiService.SetShieldStatus(shieldMode, isShield); 1124 ret = mmiService.GetShieldStatus(shieldMode, isShield);
|
/ohos5.0/foundation/multimodalinput/input/service/module_loader/src/ |
H A D | mmi_service.cpp | 2469 int32_t MMIService::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 2474 [this, shieldMode, isShield] { in SetShieldStatus() 2475 return sMsgHandler_.SetShieldStatus(shieldMode, isShield); in SetShieldStatus() 2486 int32_t MMIService::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 2491 [this, shieldMode, &isShield] { in GetShieldStatus() 2492 return sMsgHandler_.GetShieldStatus(shieldMode, isShield); in GetShieldStatus()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/event_handler/src/ |
H A D | input_manager_impl.cpp | 2183 int32_t InputManagerImpl::SetShieldStatus(int32_t shieldMode, bool isShield) in SetShieldStatus() argument 2188 int32_t ret = MULTIMODAL_INPUT_CONNECT_MGR->SetShieldStatus(shieldMode, isShield); in SetShieldStatus() 2199 int32_t InputManagerImpl::GetShieldStatus(int32_t shieldMode, bool &isShield) in GetShieldStatus() argument 2204 int32_t ret = MULTIMODAL_INPUT_CONNECT_MGR->GetShieldStatus(shieldMode, isShield); in GetShieldStatus()
|