Lines Matching full:userid
26 void FuzzInitialize(const int32_t userId) in FuzzInitialize() argument
28 EnableImeDataParser::GetInstance()->Initialize(userId); in FuzzInitialize()
31 void FuzzOnUserChanged(const int32_t userId) in FuzzOnUserChanged() argument
33 EnableImeDataParser::GetInstance()->OnUserChanged(userId); in FuzzOnUserChanged()
36 void FuzzCheckNeedSwitch(const std::string &key, SwitchInfo &switchInfo, const int32_t userId) in FuzzCheckNeedSwitch() argument
38 EnableImeDataParser::GetInstance()->CheckNeedSwitch(key, switchInfo, userId); in FuzzCheckNeedSwitch()
39 EnableImeDataParser::GetInstance()->CheckNeedSwitch(switchInfo, userId); in FuzzCheckNeedSwitch()
42 …uzzGetEnableData(const std::string &key, std::vector<std::string> &enableVec, const int32_t userId) in FuzzGetEnableData() argument
44 EnableImeDataParser::GetInstance()->GetEnableData(key, enableVec, userId); in FuzzGetEnableData()
47 void FuzzParseEnableIme(const std::string &valueStr, int32_t userId, std::vector<std::string> &enab… in FuzzParseEnableIme() argument
49 EnableImeDataParser::GetInstance()->ParseEnableIme(valueStr, userId, enableVec); in FuzzParseEnableIme()
52 void FuzzParseEnableKeyboard(const std::string &valueStr, int32_t userId, std::vector<std::string> … in FuzzParseEnableKeyboard() argument
54 EnableImeDataParser::GetInstance()->ParseEnableKeyboard(valueStr, userId, enableVec); in FuzzParseEnableKeyboard()
58 const int32_t userId) in FuzzCheckTargetEnableName() argument
60 EnableImeDataParser::GetInstance()->CheckTargetEnableName(key, targetName, nextIme, userId); in FuzzCheckTargetEnableName()
70 const int32_t userId = static_cast<int32_t>(size); in LLVMFuzzerTestOneInput() local
75 OHOS::FuzzInitialize(userId); in LLVMFuzzerTestOneInput()
76 OHOS::FuzzOnUserChanged(userId); in LLVMFuzzerTestOneInput()
77 OHOS::FuzzCheckNeedSwitch(fuzzedString, switchInfo, userId); in LLVMFuzzerTestOneInput()
78 OHOS::FuzzGetEnableData(fuzzedString, enableVec, userId); in LLVMFuzzerTestOneInput()
80 OHOS::FuzzParseEnableIme(fuzzedString, userId, enableVec); in LLVMFuzzerTestOneInput()
81 OHOS::FuzzParseEnableKeyboard(fuzzedString, userId, enableVec); in LLVMFuzzerTestOneInput()
82 OHOS::FuzzCheckTargetEnableName(fuzzedString, fuzzedString, fuzzedString, userId); in LLVMFuzzerTestOneInput()