Home
last modified time | relevance | path

Searched refs:GetExcludeDates (Results 1 – 25 of 28) sorted by relevance

12

/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dreminder_helper.cpp74 ErrCode ReminderHelper::GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) in GetExcludeDates() function in OHOS::Notification::ReminderHelper
77 return DelayedSingleton<AnsNotification>::GetInstance()->GetExcludeDates(reminderId, dates); in GetExcludeDates()
H A Dreminder_request_calendar.cpp93 std::vector<uint64_t> ReminderRequestCalendar::GetExcludeDates() const in GetExcludeDates() function in OHOS::Notification::ReminderRequestCalendar
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dreminder_helper.h124 static ErrCode GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates);
H A Dreminder_request_calendar.h73 std::vector<uint64_t> GetExcludeDates() const;
/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/include/reminder/
H A Dpublish.h155 napi_value GetExcludeDates(napi_env env, napi_callback_info info);
/ohos5.0/base/notification/distributed_notification_service/services/ans/src/
H A Dadvanced_notification_reminder_service.cpp229 ErrCode AdvancedNotificationService::GetExcludeDates(const int32_t reminderId, std::vector<uint64_t… in GetExcludeDates() function in OHOS::Notification::AdvancedNotificationService
249 return rdm->GetExcludeDates(reminderId, bundleOption, dates); in GetExcludeDates()
H A Dreminder_data_manager.cpp205 ErrCode ReminderDataManager::GetExcludeDates(const int32_t reminderId, in GetExcludeDates() function in OHOS::Notification::ReminderDataManager
216 dates = calendar->GetExcludeDates(); in GetExcludeDates()
/ohos5.0/base/notification/distributed_notification_service/test/fuzztest/reminderhelper_fuzzer/
H A Dreminderhelper_fuzzer.cpp53 Notification::ReminderHelper::GetExcludeDates(reminderId, dates); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/src/reminder/
H A Dnative_module_manager.cpp39 DECLARE_NAPI_FUNCTION("getExcludeDates", GetExcludeDates), in ReminderAgentManagerInit()
H A Dpublish.cpp1347 napi_value GetExcludeDates(napi_env env, napi_callback_info info) in GetExcludeDates() function
1380 … asynccallbackinfo->info.errorCode = ReminderHelper::GetExcludeDates(asynccallbackinfo->reminderId, in GetExcludeDates()
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H A Dreminder_helper_test.cpp161 ErrCode ret = reminderHelper.GetExcludeDates(reminderId, dates);
H A Dreminder_request_calendar_test.cpp1265 auto dates = calendar->GetExcludeDates();
1270 dates = calendar->GetExcludeDates();
/ohos5.0/base/notification/distributed_notification_service/test/fuzztest/reminderdatamanager_fuzzer/
H A Dreminderdatamanager_fuzzer.cpp47 manager->GetExcludeDates(reminderId, option, dates); in DoSomethingInterestingWithManager()
/ohos5.0/base/notification/distributed_notification_service/frameworks/core/src/
H A Dans_manager_proxy_reminder.cpp220 ErrCode AnsManagerProxy::GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) in GetExcludeDates() function in OHOS::Notification::AnsManagerProxy
H A Dans_manager_stub_invalid.cpp505 ErrCode AnsManagerStub::GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) in GetExcludeDates() function in OHOS::Notification::AnsManagerStub
H A Dans_notification.cpp1449 ErrCode AnsNotification::GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) in GetExcludeDates() function in OHOS::Notification::AnsNotification
1456 return proxy->GetExcludeDates(reminderId, dates); in GetExcludeDates()
/ohos5.0/base/notification/distributed_notification_service/services/ans/test/unittest/
H A Dreminder_data_manager_test.cpp725 ret = manager->GetExcludeDates(9999, nullptr, dates); in HWTEST_F()
756 ret = manager->GetExcludeDates(100, option, dates); in HWTEST_F()
H A Dadvanced_notification_service_test.cpp3755 …ASSERT_EQ(advancedNotificationService_->GetExcludeDates(reminderId, times), (int)ERR_REMINDER_PERM…
3758 …ASSERT_EQ(advancedNotificationService_->GetExcludeDates(reminderId, times), (int)ERR_ANS_INVALID_B…
3760 ASSERT_EQ(advancedNotificationService_->GetExcludeDates(reminderId, times), (int)ERR_NO_INIT);
/ohos5.0/base/notification/distributed_notification_service/frameworks/core/include/
H A Dans_notification.h954 ErrCode GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates);
H A Dans_manager_interface.h728 virtual ErrCode GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) = 0;
H A Dans_manager_proxy.h725 ErrCode GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) override;
H A Dans_manager_stub.h718 … virtual ErrCode GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) override;
/ohos5.0/base/notification/distributed_notification_service/services/ans/include/
H A Dreminder_data_manager.h99 …ErrCode GetExcludeDates(const int32_t reminderId, const sptr<NotificationBundleOption> &bundleOpti…
/ohos5.0/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_branch_test/
H A Dans_notification_branch_test.cpp436 ErrCode GetExcludeDates(const int32_t reminderId, std::vector<uint64_t>& dates) override in GetExcludeDates() function in OHOS::Notification::MockAnsManagerInterface
/ohos5.0/base/notification/distributed_notification_service/test/fuzztest/ansmanagerstub_fuzzer/
H A Dansmanagerstub_fuzzer.cpp408 ansManagerStub.GetExcludeDates(reminderId, excludeDates); in DoSomethingInterestingWithMyAPI()

12