Home
last modified time | relevance | path

Searched refs:noticeType (Results 1 - 13 of 13) sorted by relevance

/base/useriam/user_auth_framework/frameworks/native/client/src/
H A Duser_auth_client_impl.cpp491 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 Duser_auth_proxy.h49 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/
H A Duser_auth_interface.h63 virtual int32_t Notice(NoticeType noticeType, const std::string &eventData) = 0;
/base/useriam/user_auth_framework/test/unittest/services/mocks/
H A Dmock_user_auth_service.h59 MOCK_METHOD2(Notice, int32_t(NoticeType noticeType, const std::string &eventData));
/base/useriam/user_auth_framework/frameworks/native/client/inc/
H A Duser_auth_client_impl.h55 int32_t Notice(NoticeType noticeType, const std::string &eventData);
/base/useriam/user_auth_framework/frameworks/native/ipc/src/
H A Duser_auth_stub.cpp491 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 Duser_auth_proxy.cpp593 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 Duser_auth_service.h60 int32_t Notice(NoticeType noticeType, const std::string &eventData) override;
/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()
/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/src/
H A Duser_auth_entry.cpp480 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, &noticeType)); 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 Duser_auth_service_fuzzer.cpp307 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 Duser_auth_proxy_test.cpp379 .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 Duser_auth_service.cpp1038 int32_t UserAuthService::Notice(NoticeType noticeType, const std::string &eventData) in Notice() argument
1050 return WidgetClient::Instance().OnNotice(noticeType, eventData); in Notice()

Completed in 15 milliseconds