/base/notification/distributed_notification_service/test/fuzztest/advancednotificationservice_fuzzer/ |
D | advancednotificationservice_fuzzer.cpp | 101 bool doesSupport = *data % ENABLE; in DoSomethingInterestingWithMyAPI() local 102 advancedNotificationService.DoesSupportDoNotDisturbMode(doesSupport); in DoSomethingInterestingWithMyAPI()
|
/base/notification/distributed_notification_service/test/fuzztest/ansmanagerstub_fuzzer/ |
D | ansmanagerstub_fuzzer.cpp | 167 bool doesSupport = *data % ENABLE; in DoSomethingInterestingWithMyAPI() local 168 ansManagerStub.DoesSupportDoNotDisturbMode(doesSupport); in DoSomethingInterestingWithMyAPI()
|
/base/notification/distributed_notification_service/services/ans/test/unittest/ |
D | advanced_notification_service_branch_test.cpp | 804 bool doesSupport = true; variable 805 …EXPECT_EQ(advancedNotificationService_->DoesSupportDoNotDisturbMode(doesSupport), ERR_ANS_NON_SYST… 820 bool doesSupport = true; variable 821 …EXPECT_EQ(advancedNotificationService_->DoesSupportDoNotDisturbMode(doesSupport), ERR_ANS_PERMISSI…
|
D | advanced_notification_service_test.cpp | 1875 bool doesSupport = true; variable 1876 EXPECT_EQ(advancedNotificationService_->DoesSupportDoNotDisturbMode(doesSupport), (int)ERR_OK);
|
/base/notification/distributed_notification_service/interfaces/inner_api/ |
D | notification_helper.h | 563 static ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport);
|
/base/notification/distributed_notification_service/frameworks/ans/src/ |
D | notification_helper.cpp | 297 ErrCode NotificationHelper::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument 299 … return DelayedSingleton<AnsNotification>::GetInstance()->DoesSupportDoNotDisturbMode(doesSupport); in DoesSupportDoNotDisturbMode()
|
/base/notification/distributed_notification_service/frameworks/core/include/ |
D | ans_notification.h | 562 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport);
|
D | ans_manager_interface.h | 444 virtual ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) = 0;
|
D | ans_manager_proxy.h | 433 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override;
|
D | ans_manager_stub.h | 452 virtual ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override;
|
/base/notification/distributed_notification_service/frameworks/ans/test/unittest/ |
D | notification_helper_test.cpp | 731 bool doesSupport = true; variable 733 ErrCode ret = notificationHelper.DoesSupportDoNotDisturbMode(doesSupport);
|
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_branch_test/ |
D | ans_notification_branch_test.cpp | 280 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override in DoesSupportDoNotDisturbMode() argument
|
/base/notification/distributed_notification_service/frameworks/core/src/ |
D | ans_notification.cpp | 750 ErrCode AnsNotification::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument 757 return ansManagerProxy_->DoesSupportDoNotDisturbMode(doesSupport); in DoesSupportDoNotDisturbMode()
|
D | ans_manager_proxy.cpp | 1636 ErrCode AnsManagerProxy::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument 1657 if (!reply.ReadBool(doesSupport)) { in DoesSupportDoNotDisturbMode()
|
D | ans_manager_stub.cpp | 2084 ErrCode AnsManagerStub::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument
|
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_test/ |
D | ans_notification_unit_test.cpp | 523 bool doesSupport = true; variable 524 ErrCode ret3 = ans_->DoesSupportDoNotDisturbMode(doesSupport);
|
/base/notification/distributed_notification_service/services/ans/test/unittest/notification_subscriber_manager_branch_test/ |
D | notification_subscriber_manager_branch_test.cpp | 1046 bool doesSupport = true; variable 1053 …EXPECT_EQ(advancedNotificationService.DoesSupportDoNotDisturbMode(doesSupport), ERR_ANS_NON_SYSTEM…
|
/base/notification/distributed_notification_service/services/ans/include/ |
D | advanced_notification_service.h | 461 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override;
|
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_manager_proxy_test/ |
D | ans_manager_proxy_unit_test.cpp | 5120 bool doesSupport = false; variable 5121 int32_t result = proxy->DoesSupportDoNotDisturbMode(doesSupport); 5143 bool doesSupport = false; variable 5144 int32_t result = proxy->DoesSupportDoNotDisturbMode(doesSupport); 5146 EXPECT_EQ(true, doesSupport); 5165 bool doesSupport = false; variable 5166 int32_t result = proxy->DoesSupportDoNotDisturbMode(doesSupport); 5187 bool doesSupport = false; variable 5188 int32_t result = proxy->DoesSupportDoNotDisturbMode(doesSupport); 5209 bool doesSupport = false; variable [all …]
|
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_manager_stub_test/ |
D | ans_manager_stub_test.cpp | 3823 bool doesSupport = true; variable 3825 ErrCode result = ansManagerStub_->DoesSupportDoNotDisturbMode(doesSupport);
|
/base/notification/distributed_notification_service/services/ans/src/ |
D | advanced_notification_service.cpp | 2985 ErrCode AdvancedNotificationService::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument 2998 doesSupport = SUPPORT_DO_NOT_DISTRUB; in DoesSupportDoNotDisturbMode()
|