/ohos5.0/docs/zh-cn/application-dev/reference/apis-user-authentication-kit/ |
H A D | js-apis-useriam-userauth-sys.md | 53 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 D | js-apis-useriam-userauth-sys.md | 53 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 D | user_auth_client_impl.cpp | 519 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 D | user_auth_interface.h | 66 virtual int32_t Notice(NoticeType noticeType, const std::string &eventData) = 0;
|
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/mocks/ |
H A D | mock_user_auth_service.h | 62 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 D | user_auth_client_fuzzer.cpp | 292 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 D | user_auth_proxy.h | 51 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 D | user_auth_entry.cpp | 481 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, ¬iceType)); 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 D | user_auth_stub.cpp | 547 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 D | user_auth_proxy.cpp | 640 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 D | user_auth_client_impl.h | 57 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 D | js-apidiff-user-iam.md | 4 |新增|NA|类名:userAuth;<br>方法or属性:function sendNotice(noticeType: NoticeType, eventData: string): void;…
|
/ohos5.0/base/useriam/user_auth_framework/services/ipc/inc/ |
H A D | user_auth_service.h | 62 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
|
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/services/userauthservice_fuzzer/ |
H A D | user_auth_service_fuzzer.cpp | 307 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 D | js-apidiff-user-iam.md | 5 |新增|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 D | user_auth_proxy_test.cpp | 379 .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 D | js-apidiff-user-iam.md | 4 |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 D | js-apidiff-user-iam.md | 5 |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 D | user_auth_service.cpp | 1181 int32_t UserAuthService::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument 1193 return WidgetClient::Instance().OnNotice(noticeType, eventData); in Notice()
|