Home
last modified time | relevance | path

Searched refs:preKey (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/multimodalinput/input/service/key_command/test/
H A Dkey_command_handler_util_test.cpp124 cJSON* preKey = cJSON_CreateArray(); variable
162 cJSON* preKey = cJSON_CreateArray(); variable
181 cJSON* preKey = cJSON_CreateArray(); variable
327 cJSON* preKey = cJSON_CreateArray(); variable
347 cJSON* preKey = cJSON_CreateArray(); variable
365 cJSON* preKey = cJSON_CreateArray(); variable
383 cJSON* preKey = cJSON_CreateArray(); variable
402 cJSON* preKey = cJSON_CreateArray(); variable
935 cJSON* preKey = cJSON_CreateArray(); variable
960 cJSON* preKey = cJSON_CreateArray(); variable
[all …]
/ohos5.0/foundation/multimodalinput/input/test/fuzztest/supportkeys_fuzzer/
H A Dsupportkeys_fuzzer.cpp53 int32_t preKey; in SupportKeysFuzzTest() local
54 startPos += GetObject<int32_t>(data + startPos, size - startPos, preKey); in SupportKeysFuzzTest()
55 keycodes.push_back(preKey); in SupportKeysFuzzTest()
/ohos5.0/base/inputmethod/imf/services/adapter/keyboard/src/
H A Dkeyboard_event.cpp65 void KeyboardEvent::SubscribeCombinationKey(int32_t preKey, int32_t finalKey, CombinationKeyCallBac… in SubscribeCombinationKey() argument
69 preKeys.insert(preKey); in SubscribeCombinationKey()
77 …MSA_HILOGE("failed to SubscribeKeyEvent, id: %{public}d preKey: %{public}d.", subscribeId, preKey); in SubscribeCombinationKey()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dopenssl_crypto.cpp28 bool OpensslCrypto::AESDecrypt(const KeyBlob &preKey, KeyContext &keyContext_, KeyBlob &plainText) in AESDecrypt() argument
31 KeyBlob shield = HashWithPrefix(preKey, keyContext_.secDiscard, AES_256_HASH_RANDOM_SIZE); in AESDecrypt()
80 bool OpensslCrypto::AESEncrypt(const KeyBlob &preKey, const KeyBlob &plainText, KeyContext &keyCont… in AESEncrypt() argument
83 KeyBlob shield = HashWithPrefix(preKey, keyContext_.secDiscard, AES_256_HASH_RANDOM_SIZE); in AESEncrypt()
/ohos5.0/foundation/multimodalinput/input/test/fuzztest/subscribekeyevent_fuzzer/
H A Dsubscribekeyevent_fuzzer.cpp62 int32_t preKey; in SubscribeKeyEventFuzzTest() local
63 startPos += GetObject<int32_t>(preKey, data + startPos, size - startPos); in SubscribeKeyEventFuzzTest()
64 prekeys.insert(preKey); in SubscribeKeyEventFuzzTest()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dopenssl_crypto.h28 static bool AESDecrypt(const KeyBlob &preKey, KeyContext &keyContext_, KeyBlob &plainText);
29 … static bool AESEncrypt(const KeyBlob &preKey, const KeyBlob &plainText, KeyContext &keyContext_);
/ohos5.0/foundation/multimodalinput/input/service/key_command/src/
H A Dkey_command_handler_util.cpp51 cJSON* preKey = cJSON_GetObjectItemCaseSensitive(jsonData, "preKey"); in GetPreKeys() local
52 if (!cJSON_IsArray(preKey)) { in GetPreKeys()
56 int32_t preKeySize = cJSON_GetArraySize(preKey); in GetPreKeys()
62 cJSON *preKeyJson = cJSON_GetArrayItem(preKey, i); in GetPreKeys()
557 for (const auto& preKey : preKeys) { in GenerateKey() local
558 ss << preKey << ","; in GenerateKey()
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/event_handler/src/
H A Dkey_event_input_subscribe_manager.cpp126 for (const auto &preKey : preKeys) { in SubscribeKeyEvent() local
127 MMI_HILOGD("prekey:%{private}d", preKey); in SubscribeKeyEvent()
/ohos5.0/base/inputmethod/imf/services/adapter/keyboard/include/
H A Dkeyboard_event.h50 …static void SubscribeCombinationKey(int32_t preKey, int32_t finalKey, CombinationKeyCallBack callb…
/ohos5.0/base/hiviewdfx/hiview/utility/smart_parser/rule/
H A Dextract_rule.cpp246 std::map<std::string, std::string>& param, const std::string& preKey) const in GetExtractParam()
249 auto pos = iter.key().asString().find(preKey); in GetExtractParam()
/ohos5.0/base/hiviewdfx/hiview/utility/smart_parser/rule/include/
H A Dextract_rule.h48 std::map<std::string, std::string>& param, const std::string& preKey) const;
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/input_consumer/src/
H A Djs_register_util.cpp240 for (const auto &preKey: preKeys) { in AsyncWorkFn() local
241 CHKRV(napi_create_int32(env, preKey, &value), CREATE_INT32); in AsyncWorkFn()