/base/useriam/user_auth_framework/frameworks/native/client/src/ |
H A D | user_auth_client_impl.cpp | 491 int32_t UserAuthClientImpl::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument 493 IAM_LOGI("start, noticeType:%{public}d", noticeType); in Notice() 499 IAM_LOGI("UserAuthClientImpl::Notice noticeType:%{public}d, eventDat:%{public}s", in Notice() 500 static_cast<int32_t>(noticeType), eventData.c_str()); in Notice() 501 return proxy->Notice(noticeType, eventData); in Notice()
|
/base/useriam/user_auth_framework/frameworks/native/ipc/inc/ |
H A D | user_auth_proxy.h | 49 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
|
/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/ |
H A D | user_auth_interface.h | 63 virtual int32_t Notice(NoticeType noticeType, const std::string &eventData) = 0;
|
/base/useriam/user_auth_framework/test/unittest/services/mocks/ |
H A D | mock_user_auth_service.h | 59 MOCK_METHOD2(Notice, int32_t(NoticeType noticeType, const std::string &eventData));
|
/base/useriam/user_auth_framework/frameworks/native/client/inc/ |
H A D | user_auth_client_impl.h | 55 int32_t Notice(NoticeType noticeType, const std::string &eventData);
|
/base/useriam/user_auth_framework/frameworks/native/ipc/src/ |
H A D | user_auth_stub.cpp | 491 NoticeType noticeType = static_cast<NoticeType>(type); in NoticeStub() local 492 if (noticeType != WIDGET_NOTICE) { in NoticeStub() 498 int32_t result = Notice(noticeType, eventData); in NoticeStub()
|
H A D | user_auth_proxy.cpp | 593 int32_t UserAuthProxy::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument 603 int32_t type = static_cast<int32_t>(noticeType); in Notice() 605 IAM_LOGE("failed to write noticeType"); in Notice()
|
/base/useriam/user_auth_framework/services/ipc/inc/ |
H A D | user_auth_service.h | 60 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
|
/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()
|
/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/src/ |
H A D | user_auth_entry.cpp | 480 NoticeType noticeType = NoticeType::WIDGET_NOTICE; in SendNotice() local 485 std::string msgStr = "Parameter error. The type of \"noticeType\" must be NoticeType."; in SendNotice() 489 IAM_LOGI("recv SendNotice noticeType:%{public}d", noticeType_value); in SendNotice() 492 std::string msgStr = "Parameter error. The value of \"noticeType\" must be NoticeType.WIDGET_NOTICE."; in SendNotice() 506 int32_t result = UserAuthClientImpl::Instance().Notice(noticeType, eventData); in SendNotice() 874 napi_value noticeType = nullptr; in NoticeTypeConstructor() local 876 NAPI_CALL(env, napi_create_object(env, ¬iceType)); in NoticeTypeConstructor() 878 NAPI_CALL(env, napi_set_named_property(env, noticeType, "WIDGET_NOTICE", widget_notice)); in NoticeTypeConstructor() 879 return noticeType; in NoticeTypeConstructor()
|
/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()
|
/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 HWTEST_F() 380 EXPECT_EQ(noticeType, testNoticeType); in HWTEST_F()
|
/base/useriam/user_auth_framework/services/ipc/src/ |
H A D | user_auth_service.cpp | 1038 int32_t UserAuthService::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument 1050 return WidgetClient::Instance().OnNotice(noticeType, eventData); in Notice()
|