Home
last modified time | relevance | path

Searched refs:FACTORY_MODE (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-input-kit/
H A Djs-apis-inputconsumer-sys.md120 | shieldMode | ShieldMode | 是 | 屏蔽类型,目前仅支持'FACTORY_MODE'。 …
126 let FACTORY_MODE = 0;
128 inputConsumer.setShieldStatus(FACTORY_MODE,true);
150 | shieldMode | ShieldMode | 是 | 屏蔽类型,目前仅支持'FACTORY_MODE'。 …
162 let FACTORY_MODE = 0;
163 let shieldstatusResult:Boolean = inputConsumer.getShieldStatus(FACTORY_MODE);
192 | FACTORY_MODE | number | 是 | 否 | 屏蔽类型,屏蔽所有快捷键。 |
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/
H A Djs-apis-inputconsumer-sys.md120 …dMode | Yes | Shielding mode. Currently, only **FACTORY_MODE** is supported.…
126 let FACTORY_MODE = 0;
128 inputConsumer.setShieldStatus(FACTORY_MODE,true);
150 …ldMode | Yes | Shielding mode. Currently, only **FACTORY_MODE** is supported.…
162 let FACTORY_MODE = 0;
163 let shieldstatusResult:Boolean = inputConsumer.getShieldStatus(FACTORY_MODE);
192 | FACTORY_MODE | number | Yes| No| Factory mode, which means to shield all shortcut keys.|
/ohos5.0/foundation/multimodalinput/input/service/key_event_normalize/include/
H A Dkey_event_normalize.h46 {SHIELD_MODE::FACTORY_MODE, false},
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/input_consumer/src/
H A Djs_register_module.cpp364 if (shieldMode < FACTORY_MODE || shieldMode > OOBE_MODE) { in SetShieldStatus()
406 if (shieldMode < FACTORY_MODE || shieldMode > OOBE_MODE) { in GetShieldStatus()
440 CHKRP(napi_create_int32(env, SHIELD_MODE::FACTORY_MODE, &factory_mode), CREATE_INT32); in CreateShieldMode()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/utils/
H A Dwifi_global_func.cpp50 constexpr const char* FACTORY_MODE = "factory"; variable
552 if (strncmp(preValue, FACTORY_MODE, FACTORY_MODE_LEN) == 0) { in IsFactoryMode()
/ohos5.0/foundation/multimodalinput/input/util/common/include/
H A Dstruct_multimodal.h187 FACTORY_MODE = 0, enumerator
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/test/
H A Dinput_manager_test.cpp2270 int32_t ret = InputManager::GetInstance()->SetShieldStatus(SHIELD_MODE::FACTORY_MODE, true);
2272 … ret = InputManager::GetInstance()->GetShieldStatus(SHIELD_MODE::FACTORY_MODE, factoryModeStatus);
2280 … ret = InputManager::GetInstance()->GetShieldStatus(SHIELD_MODE::FACTORY_MODE, factoryModeStatus);
2288 … ret = InputManager::GetInstance()->GetShieldStatus(SHIELD_MODE::FACTORY_MODE, factoryModeStatus);
/ohos5.0/foundation/multimodalinput/input/service/event_handler/src/
H A Devent_normalize_handler.cpp387 if (currentShieldMode == SHIELD_MODE::FACTORY_MODE) { in UpdateKeyEventHandlerChain()