Home
last modified time | relevance | path

Searched refs:properties (Results 1 - 25 of 124) sorted by relevance

12345

/base/useriam/user_auth_framework/frameworks/native/executors/include/framework/
H A Dframework_executor_callback.h45 int32_t OnSetProperty(const Attributes &properties) override;
55 ResultCode OnSetPropertyInner(const Attributes &properties);
58 ResultCode ProcessEnrollCommand(uint64_t scheduleId, const Attributes &properties);
59 ResultCode ProcessAuthCommand(uint64_t scheduleId, const Attributes &properties);
60 ResultCode ProcessIdentifyCommand(uint64_t scheduleId, const Attributes &properties);
62 ResultCode ProcessDeleteTemplateCommand(const Attributes &properties);
63 ResultCode ProcessSetCachedTemplates(const Attributes &properties);
64 ResultCode ProcessNotifyExecutorReady(const Attributes &properties);
65 ResultCode ProcessCustomCommand(const Attributes &properties);
/base/useriam/user_auth_framework/services/core/src/
H A Dresource_node_utils.cpp48 Attributes properties; in NotifyExecutorToDeleteTemplates() local
49 properties.SetUint32Value(Attributes::ATTR_PROPERTY_MODE, PROPERTY_MODE_DEL); in NotifyExecutorToDeleteTemplates()
50 properties.SetUint64Value(Attributes::ATTR_TEMPLATE_ID, info->GetTemplateId()); in NotifyExecutorToDeleteTemplates()
51 properties.SetStringValue(Attributes::ATTR_TEMPLATE_CHANGE_REASON, changeReasonTrace); in NotifyExecutorToDeleteTemplates()
53 int32_t ret = resourceNode->SetProperty(properties); in NotifyExecutorToDeleteTemplates()
69 Attributes properties; in SendMsgToExecutor() local
72 properties.SetInt32Value(UserIam::UserAuth::Attributes::ATTR_PROPERTY_MODE, commandId); in SendMsgToExecutor()
74 bool setExtraInfoRet = properties.SetUint8ArrayValue(UserIam::UserAuth::Attributes::ATTR_EXTRA_INFO, msg); in SendMsgToExecutor()
76 int32_t ret = resourceNode->SetProperty(properties); in SendMsgToExecutor()
/base/useriam/user_auth_framework/frameworks/native/executors/src/framework/
H A Dframework_executor_callback.cpp115 int32_t FrameworkExecutorCallback::OnSetProperty(const Attributes &properties) in OnSetProperty() argument
117 return OnSetPropertyInner(properties); in OnSetProperty()
120 ResultCode FrameworkExecutorCallback::OnSetPropertyInner(const Attributes &properties) in OnSetPropertyInner() argument
124 properties.GetUint32Value(Attributes::ATTR_PROPERTY_MODE, commandId); in OnSetPropertyInner()
129 ret = ProcessDeleteTemplateCommand(properties); in OnSetPropertyInner()
131 ret = ProcessSetCachedTemplates(properties); in OnSetPropertyInner()
133 ret = ProcessNotifyExecutorReady(properties); in OnSetPropertyInner()
135 ret = ProcessCustomCommand(properties); in OnSetPropertyInner()
191 ResultCode FrameworkExecutorCallback::ProcessEnrollCommand(uint64_t scheduleId, const Attributes &properties) in ProcessEnrollCommand() argument
194 auto command = Common::MakeShared<EnrollCommand>(executor_, scheduleId, properties, executorMessenger in ProcessEnrollCommand()
199 ProcessAuthCommand(uint64_t scheduleId, const Attributes &properties) ProcessAuthCommand() argument
218 ProcessIdentifyCommand(uint64_t scheduleId, const Attributes &properties) ProcessIdentifyCommand() argument
238 ProcessDeleteTemplateCommand(const Attributes &properties) ProcessDeleteTemplateCommand() argument
268 ProcessSetCachedTemplates(const Attributes &properties) ProcessSetCachedTemplates() argument
286 ProcessNotifyExecutorReady(const Attributes &properties) ProcessNotifyExecutorReady() argument
305 ProcessCustomCommand(const Attributes &properties) ProcessCustomCommand() argument
[all...]
/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dnapi_native_media_player.cpp31 WVLOG_I("begin to init native media player napi properties"); in Init()
52 napi_property_descriptor properties[] = { in DefineProperties() local
71 return napi_define_properties(env, *value, sizeof(properties) / sizeof(properties[0]), properties); in DefineProperties()
79 napi_property_descriptor properties[] = { in ExportEnumPreload() local
88 NapiParseUtils::CreateEnumConstructor, nullptr, sizeof(properties) / sizeof(properties[0]), properties, in ExportEnumPreload()
98 napi_property_descriptor properties[] in ExportEnumMediaType() local
117 napi_property_descriptor properties[] = { ExportEnumSourceType() local
134 napi_property_descriptor properties[] = { ExportEnumMediaError() local
155 napi_property_descriptor properties[] = { ExportEnumReadyState() local
180 napi_property_descriptor properties[] = { ExportEnumSuspendType() local
201 napi_property_descriptor properties[] = { ExportEnumNetworkState() local
224 napi_property_descriptor properties[] = { ExportEnumPlaybackStatus() local
[all...]
H A Dnapi_web_download_manager.cpp104 napi_property_descriptor properties[] = { in Init() local
110 sizeof(properties) / sizeof(properties[0]), properties, &webDownloadManagerClass); in Init()
H A Dnapi_web_download_delegate.cpp138 napi_property_descriptor properties[] = { in Init() local
147 sizeof(properties) / sizeof(properties[0]), properties, &webDownloadDelegateClass); in Init()
H A Dnapi_web_scheme_handler_request.cpp45 napi_property_descriptor properties[] = { in ExportWebSchemeHandlerRequestClass() local
60 sizeof(properties) / sizeof(properties[0]), properties, &webSchemeHandlerRequest); in ExportWebSchemeHandlerRequestClass()
68 napi_property_descriptor properties[] = { in DefineProperties() local
80 return napi_define_properties(env, *object, sizeof(properties) / sizeof(properties[0]), properties); in DefineProperties()
353 napi_property_descriptor properties[] = { in ExportEnumWebResourceType() local
398 NapiParseUtils::CreateEnumConstructor, nullptr, sizeof(properties) / sizeo in ExportEnumWebResourceType()
412 napi_property_descriptor properties[] = { ExportWebSchemeHandlerResponseClass() local
835 napi_property_descriptor properties[] = { Init() local
939 napi_property_descriptor properties[] = { ExportWebResourceHandlerClass() local
956 napi_property_descriptor properties[] = { DefineProperties() local
1129 napi_property_descriptor properties[] = { ExportWebHttpBodyStreamClass() local
1148 napi_property_descriptor properties[] = { DefineProperties() local
[all...]
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H A Dark_net_conn_callback_wrapper.cpp58 const std::shared_ptr<NWeb::NetConnectionPropertiesAdapter> properties) in OnNetConnectionPropertiesChanged()
60 if (CHECK_SHARED_PTR_IS_NULL(properties)) { in OnNetConnectionPropertiesChanged()
64 return ctocpp_->OnNetConnectionPropertiesChanged(new ArkNetConnectionPropertiesAdapterImpl(properties)); in OnNetConnectionPropertiesChanged()
57 OnNetConnectionPropertiesChanged( const std::shared_ptr<NWeb::NetConnectionPropertiesAdapter> properties) OnNetConnectionPropertiesChanged() argument
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_net_conn_callback_impl.cpp59 const ArkWebRefPtr<ArkNetConnectionPropertiesAdapter> properties) in OnNetConnectionPropertiesChanged()
61 if (CHECK_REF_PTR_IS_NULL(properties)) { in OnNetConnectionPropertiesChanged()
66 std::make_shared<ArkNetConnectionPropertiesAdapterWrapper>(properties)); in OnNetConnectionPropertiesChanged()
58 OnNetConnectionPropertiesChanged( const ArkWebRefPtr<ArkNetConnectionPropertiesAdapter> properties) OnNetConnectionPropertiesChanged() argument
/base/web/webview/interfaces/kits/napi/webfunction/
H A Dnapi_webview_function.cpp37 napi_property_descriptor properties[] = { in WebFunctionInit() local
40 napi_define_properties(env, exports, sizeof(properties) / sizeof(properties[0]), properties); in WebFunctionInit()
/base/hiviewdfx/hilog/interfaces/js/kits/napi/src/common/napi/
H A Dn_class.cpp28 vector<napi_property_descriptor> &&properties) in DefineClass()
32 nullptr, properties.size(), properties.data(), &classVal); in DefineClass()
27 DefineClass(napi_env env, string className, napi_callback constructor, vector<napi_property_descriptor> &&properties) DefineClass() argument
/base/useriam/user_auth_framework/test/fuzztest/executors/userauthexecutor_fuzzer/
H A Duser_auth_executor_fuzzer.cpp363 Attributes properties; in FuzzExecutorCommand() local
364 FillIAttributes(parcel, properties); in FuzzExecutorCommand()
366 Common::MakeShared<CollectCommand>(g_executor, scheduleId, properties, g_executorMessenger); in FuzzExecutorCommand()
426 Attributes properties; in FuzzFrameworkOnSetProperty() local
427 FillIAttributes(parcel, properties); in FuzzFrameworkOnSetProperty()
428 g_executorCallback->OnSetProperty(properties); in FuzzFrameworkOnSetProperty()
476 Attributes properties; in FuzzProcessAuthCommand() local
477 FillIAttributes(parcel, properties); in FuzzProcessAuthCommand()
478 g_frameworkExecutorCallback->ProcessAuthCommand(scheduleId, properties); in FuzzProcessAuthCommand()
486 Attributes properties; in FuzzProcessIdentifyCommand() local
495 Attributes properties; FuzzProcessTemplateCommand() local
505 Attributes properties; FuzzProcessNotifyExecutorReady() local
[all...]
/base/inputmethod/imf/frameworks/cj/src/
H A Dinput_method_ffi.cpp205 std::vector<Property> properties; in FfiInputMethodSettingGetInputMethods() local
211 int32_t errCode = ctrl->ListInputMethod(enable, properties); in FfiInputMethodSettingGetInputMethods()
216 ret.size = static_cast<int64_t>(properties.size()); in FfiInputMethodSettingGetInputMethods()
226 Utils::InputMethodProperty2C(props, properties[i]); in FfiInputMethodSettingGetInputMethods()
236 std::vector<Property> properties; in FfiInputMethodSettingGetAllInputMethods() local
242 int32_t errCode = ctrl->ListInputMethod(properties); in FfiInputMethodSettingGetAllInputMethods()
247 ret.size = static_cast<int64_t>(properties.size()); in FfiInputMethodSettingGetAllInputMethods()
257 Utils::InputMethodProperty2C(props, properties[i]); in FfiInputMethodSettingGetAllInputMethods()
/base/web/webview/ohos_adapter/net_connect_adapter/src/
H A Dnet_connect_callback_impl.cpp94 auto properties = std::make_shared<NetConnectionPropertiesAdapterImpl>(); in NetConnectionPropertiesChange() local
95 properties->SetNetId(netHandle->GetNetId()); in NetConnectionPropertiesChange()
96 return cb_->OnNetConnectionPropertiesChanged(properties); in NetConnectionPropertiesChange()
/base/global/i18n/interfaces/js/kits/src/
H A Di18n_normalizer_addon.cpp49 napi_property_descriptor properties[] = { in InitI18nNormalizer() local
54 sizeof(properties) / sizeof(napi_property_descriptor), properties, &constructor); in InitI18nNormalizer()
75 napi_property_descriptor properties[] = { in InitNormalizer() local
80 nullptr, sizeof(properties) / sizeof(napi_property_descriptor), properties, &constructor); in InitNormalizer()
H A Di18n_addon.cpp66 napi_property_descriptor properties[] = { in InitI18nUtil() local
76 sizeof(properties) / sizeof(napi_property_descriptor), properties, &constructor); in InitI18nUtil()
93 napi_property_descriptor properties[] = { in Init() local
112 initStatus = napi_define_properties(env, exports, sizeof(properties) / sizeof(napi_property_descriptor), in Init()
113 properties); in Init()
115 HILOG_ERROR_I18N("Failed to set properties at init"); in Init()
479 napi_property_descriptor properties[] = { in InitI18nTransliterator() local
484 nullptr, sizeof(properties) / sizeof(napi_property_descriptor), properties, in InitI18nTransliterator()
505 napi_property_descriptor properties[] = { InitTransliterator() local
713 napi_property_descriptor properties[] = { InitPhoneNumberFormat() local
926 napi_property_descriptor properties[] = { InitI18nIndexUtil() local
950 napi_property_descriptor properties[] = {}; InitIndexUtil() local
1006 napi_property_descriptor properties[] = { InitI18nBreakIterator() local
1040 napi_property_descriptor properties[] = {}; InitBreakIterator() local
1569 napi_property_descriptor properties[] = { InitUtil() local
[all...]
/base/useriam/user_auth_framework/frameworks/native/client/src/
H A Dexecutor_callback_service.cpp69 int32_t ExecutorCallbackService::OnSetProperty(const Attributes &properties) in OnSetProperty() argument
76 return callback_->OnSetProperty(properties); in OnSetProperty()
/base/useriam/user_auth_framework/test/fuzztest/clients/executorcallbackstub_fuzzer/
H A Dexecutor_callback_stub_fuzzer.cpp66 int32_t OnSetProperty(const Attributes &properties) in OnSetProperty() argument
69 static_cast<void>(properties); in OnSetProperty()
/base/useriam/user_auth_framework/test/fuzztest/services/servicecore_fuzzer/inc/
H A Dcommon_dummy.h110 int32_t SetProperty(const Attributes &properties) in SetProperty() argument
113 static_cast<void>(properties); in SetProperty()
/base/security/access_token/frameworks/js/napi/el5filekeymanager/src/
H A Del5_filekey_manager_napi.cpp159 napi_property_descriptor properties[] = { in Init() local
164 napi_define_properties(env, exports, sizeof(properties) / sizeof(properties[0]), properties); in Init()
/base/useriam/user_auth_framework/test/unittest/services/src/
H A Dresource_node_test.cpp131 Attributes properties; in HWTEST_F() local
136 EXPECT_EQ(node->SetProperty(properties), GENERAL_ERROR); in HWTEST_F()
162 Attributes properties; in HWTEST_F() local
167 EXPECT_EQ(node->SetProperty(properties), SUCCESS); in HWTEST_F()
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
H A Djs_keyboard_controller_engine.cpp28 napi_property_descriptor properties[] = { in Init() local
35 sizeof(properties) / sizeof(napi_property_descriptor), properties, &cons)); in Init()
/base/account/os_account/interfaces/kits/napi/appaccount/src/
H A Dnapi_app_account_authenticator_callback.cpp47 napi_property_descriptor properties[] = { in Init() local
54 sizeof(properties) / sizeof(napi_property_descriptor), properties, &constructor)); in Init()
56 sizeof(properties) / sizeof(napi_property_descriptor), properties, &constructor)); in Init()
/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Dinput_method_switch_test.cpp293 std::vector<Property> properties = {}; in HWTEST_F() local
294 auto ret = imc_->ListInputMethod(properties); in HWTEST_F()
296 EXPECT_TRUE(properties.size() >= TOTAL_IME_MIN_NUM); in HWTEST_F()
299 for (const auto &property : properties) { in HWTEST_F()
396 std::vector<SubProperty> properties = {}; in HWTEST_F() local
397 auto ret = imc_->ListInputMethodSubtype(*property, properties); in HWTEST_F()
399 EXPECT_TRUE(properties.empty()); in HWTEST_F()
/base/hiviewdfx/hilog/services/hilogd/include/
H A Dlog_collector.h20 #include <properties.h>

Completed in 16 milliseconds

12345