Home
last modified time | relevance | path

Searched refs:props (Results 1 – 9 of 9) sorted by relevance

/base/inputmethod/imf/services/include/
Dutils.h43 std::vector<Property> props; in ToProperty() local
45props.push_back({ Str16ToStr8(property.mPackageName), Str16ToStr8(property.mAbilityName) }); in ToProperty()
47 return props; in ToProperty()
Dinput_method_system_ability.h61 int32_t ListInputMethod(InputMethodStatus status, std::vector<Property> &props) override;
73 …_t ListInputMethodByUserId(int32_t userId, InputMethodStatus status, std::vector<Property> &props);
100 int32_t ListAllInputMethod(int32_t userId, std::vector<Property> &props);
101 int32_t ListEnabledInputMethod(std::vector<Property> &props);
102 int32_t ListDisabledInputMethod(int32_t userId, std::vector<Property> &props);
103 int32_t ListProperty(int32_t userId, std::vector<Property> &props);
Di_input_method_system_ability.h72 virtual int32_t ListInputMethod(InputMethodStatus status, std::vector<Property> &props) = 0;
/base/inputmethod/imf/services/src/
Dinput_method_system_ability.cpp419 …t InputMethodSystemAbility::ListInputMethod(InputMethodStatus status, std::vector<Property> &props) in ListInputMethod() argument
421 return ListInputMethodByUserId(userId_, status, props); in ListInputMethod()
424 … int32_t InputMethodSystemAbility::ListAllInputMethod(int32_t userId, std::vector<Property> &props) in ListAllInputMethod() argument
427 return ListProperty(userId, props); in ListAllInputMethod()
430 int32_t InputMethodSystemAbility::ListEnabledInputMethod(std::vector<Property> &props) in ListEnabledInputMethod() argument
439 props = { property }; in ListEnabledInputMethod()
443 …2_t InputMethodSystemAbility::ListDisabledInputMethod(int32_t userId, std::vector<Property> &props) in ListDisabledInputMethod() argument
446 auto ret = ListProperty(userId, props); in ListDisabledInputMethod()
456 for (auto iter = props.begin(); iter != props.end();) { in ListDisabledInputMethod()
458 iter = props.erase(iter); in ListDisabledInputMethod()
[all …]
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
Dcert_manager_app_cert_process.c247 struct CmKeyProperties props = { in ImportRsaKey() local
253 ret = CmKeyOpImportKey(keyUri, &props, &keyPair); in ImportRsaKey()
285 const struct CmKeyProperties props = { in ImportEccKey() local
291 ret = CmKeyOpImportKey(keyUri, &props, &keyPair); in ImportEccKey()
314 struct CmKeyProperties props = { in ImportEd25519Key() local
319 ret = CmKeyOpImportKey(keyUri, &props, &keyPair); in ImportEd25519Key()
/base/inputmethod/imf/frameworks/inputmethod_controller/include/
Dinput_method_controller.h79 IMF_API int32_t ListInputMethod(std::vector<Property> &props);
80 IMF_API int32_t ListInputMethod(bool enable, std::vector<Property> &props);
115 int32_t ListInputMethodCommon(InputMethodStatus status, std::vector<Property> &props);
Dinput_method_system_ability_proxy.h57 int32_t ListInputMethod(InputMethodStatus status, std::vector<Property> &props) override;
/base/inputmethod/imf/frameworks/inputmethod_controller/src/
Dinput_method_system_ability_proxy.cpp131 …utMethodSystemAbilityProxy::ListInputMethod(InputMethodStatus status, std::vector<Property> &props) in ListInputMethod() argument
136 [&props](MessageParcel &reply) { return ITypesUtil::Unmarshal(reply, props); }); in ListInputMethod()
Dinput_method_controller.cpp415 …nputMethodController::ListInputMethodCommon(InputMethodStatus status, std::vector<Property> &props) in ListInputMethodCommon() argument
423 return proxy->ListInputMethod(status, props); in ListInputMethodCommon()
426 int32_t InputMethodController::ListInputMethod(std::vector<Property> &props) in ListInputMethod() argument
429 return ListInputMethodCommon(ALL, props); in ListInputMethod()
432 int32_t InputMethodController::ListInputMethod(bool enable, std::vector<Property> &props) in ListInputMethod() argument
435 return ListInputMethodCommon(enable ? ENABLE : DISABLE, props); in ListInputMethod()