Home
last modified time | relevance | path

Searched refs:noticeType (Results 1 – 19 of 19) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-user-authentication-kit/
H A Djs-apis-useriam-userauth-sys.md53 sendNotice(noticeType: NoticeType, eventData: string): void
67 | noticeType | [NoticeType](#noticetype10) | 是 | 通知类型。 |
105 let noticeType = userAuth.NoticeType.WIDGET_NOTICE;
106 userAuth.sendNotice(noticeType, jsonEventData);
/ohos5.0/docs/en/application-dev/reference/apis-user-authentication-kit/
H A Djs-apis-useriam-userauth-sys.md53 sendNotice(noticeType: NoticeType, eventData: string): void
67 | noticeType | [NoticeType](#noticetype10) | Yes | Notification type.|
105 let noticeType = userAuth.NoticeType.WIDGET_NOTICE;
106 userAuth.sendNotice(noticeType, jsonEventData);
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/client/src/
H A Duser_auth_client_impl.cpp519 int32_t UserAuthClientImpl::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument
521 IAM_LOGI("start, noticeType:%{public}d", noticeType); in Notice()
528 static_cast<int32_t>(noticeType), eventData.c_str()); in Notice()
529 return proxy->Notice(noticeType, eventData); in Notice()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/
H A Duser_auth_interface.h66 virtual int32_t Notice(NoticeType noticeType, const std::string &eventData) = 0;
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/mocks/
H A Dmock_user_auth_service.h62 MOCK_METHOD2(Notice, int32_t(NoticeType noticeType, const std::string &eventData));
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/clients/userauthclient_fuzzer/
H A Duser_auth_client_fuzzer.cpp292 NoticeType noticeType = static_cast<NoticeType>(parcel.ReadInt32()); in FuzzNotice() local
294 UserAuthClientImpl::Instance().Notice(noticeType, eventData); in FuzzNotice()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/inc/
H A Duser_auth_proxy.h51 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
/ohos5.0/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/src/
H A Duser_auth_entry.cpp481 NoticeType noticeType = NoticeType::WIDGET_NOTICE; in SendNotice() local
507 int32_t result = UserAuthClientImpl::Instance().Notice(noticeType, eventData); in SendNotice()
878 napi_value noticeType = nullptr; in NoticeTypeConstructor() local
880 NAPI_CALL(env, napi_create_object(env, &noticeType)); in NoticeTypeConstructor()
882 NAPI_CALL(env, napi_set_named_property(env, noticeType, "WIDGET_NOTICE", widget_notice)); in NoticeTypeConstructor()
883 return noticeType; in NoticeTypeConstructor()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/src/
H A Duser_auth_stub.cpp547 NoticeType noticeType = static_cast<NoticeType>(type); in NoticeStub() local
548 if (noticeType != WIDGET_NOTICE) { in NoticeStub()
554 int32_t result = Notice(noticeType, eventData); in NoticeStub()
H A Duser_auth_proxy.cpp640 int32_t UserAuthProxy::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument
650 int32_t type = static_cast<int32_t>(noticeType); in Notice()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/client/inc/
H A Duser_auth_client_impl.h57 int32_t Notice(NoticeType noticeType, const std::string &eventData);
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v4.0-beta2/
H A Djs-apidiff-user-iam.md4 |新增|NA|类名:userAuth;<br>方法or属性:function sendNotice(noticeType: NoticeType, eventData: string): void;…
/ohos5.0/base/useriam/user_auth_framework/services/ipc/inc/
H A Duser_auth_service.h62 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/services/userauthservice_fuzzer/
H A Duser_auth_service_fuzzer.cpp307 NoticeType noticeType = static_cast<NoticeType>(parcel.ReadInt32()); in FuzzNotice() local
309 g_userAuthService.Notice(noticeType, eventData); in FuzzNotice()
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-user-iam.md5 |新增|NA|类名:userAuth;<br>方法or属性:function sendNotice(noticeType: NoticeType, eventData: string): void;…
/ohos5.0/base/useriam/user_auth_framework/test/unittest/inner_api/src/
H A Duser_auth_proxy_test.cpp379 .WillOnce([](NoticeType noticeType, const std::string &eventData) { in __anoneec003361302() argument
380 EXPECT_EQ(noticeType, testNoticeType); in __anoneec003361302()
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v4.0-beta2/
H A Djs-apidiff-user-iam.md4 |Added|NA|Class name: userAuth;<br>Method or attribute name: function sendNotice(noticeType: Notice…
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/
H A Djs-apidiff-user-iam.md5 |Added|NA|Class name: userAuth;<br>Method or attribute name: function sendNotice(noticeType: Notice…
/ohos5.0/base/useriam/user_auth_framework/services/ipc/src/
H A Duser_auth_service.cpp1181 int32_t UserAuthService::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument
1193 return WidgetClient::Instance().OnNotice(noticeType, eventData); in Notice()