Home
last modified time | relevance | path

Searched refs:doesSupport (Results 1 – 21 of 21) sorted by relevance

/base/notification/distributed_notification_service/test/fuzztest/advancednotificationservice_fuzzer/
Dadvancednotificationservice_fuzzer.cpp101 bool doesSupport = *data % ENABLE; in DoSomethingInterestingWithMyAPI() local
102 advancedNotificationService.DoesSupportDoNotDisturbMode(doesSupport); in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/test/fuzztest/ansmanagerstub_fuzzer/
Dansmanagerstub_fuzzer.cpp167 bool doesSupport = *data % ENABLE; in DoSomethingInterestingWithMyAPI() local
168 ansManagerStub.DoesSupportDoNotDisturbMode(doesSupport); in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/services/ans/test/unittest/
Dadvanced_notification_service_branch_test.cpp804 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…
Dadvanced_notification_service_test.cpp1875 bool doesSupport = true; variable
1876 EXPECT_EQ(advancedNotificationService_->DoesSupportDoNotDisturbMode(doesSupport), (int)ERR_OK);
/base/notification/distributed_notification_service/interfaces/inner_api/
Dnotification_helper.h563 static ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport);
/base/notification/distributed_notification_service/frameworks/ans/src/
Dnotification_helper.cpp297 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/
Dans_notification.h562 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport);
Dans_manager_interface.h444 virtual ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) = 0;
Dans_manager_proxy.h433 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override;
Dans_manager_stub.h452 virtual ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override;
/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
Dnotification_helper_test.cpp731 bool doesSupport = true; variable
733 ErrCode ret = notificationHelper.DoesSupportDoNotDisturbMode(doesSupport);
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_branch_test/
Dans_notification_branch_test.cpp280 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override in DoesSupportDoNotDisturbMode() argument
/base/notification/distributed_notification_service/frameworks/core/src/
Dans_notification.cpp750 ErrCode AnsNotification::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument
757 return ansManagerProxy_->DoesSupportDoNotDisturbMode(doesSupport); in DoesSupportDoNotDisturbMode()
Dans_manager_proxy.cpp1636 ErrCode AnsManagerProxy::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument
1657 if (!reply.ReadBool(doesSupport)) { in DoesSupportDoNotDisturbMode()
Dans_manager_stub.cpp2084 ErrCode AnsManagerStub::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_test/
Dans_notification_unit_test.cpp523 bool doesSupport = true; variable
524 ErrCode ret3 = ans_->DoesSupportDoNotDisturbMode(doesSupport);
/base/notification/distributed_notification_service/services/ans/test/unittest/notification_subscriber_manager_branch_test/
Dnotification_subscriber_manager_branch_test.cpp1046 bool doesSupport = true; variable
1053 …EXPECT_EQ(advancedNotificationService.DoesSupportDoNotDisturbMode(doesSupport), ERR_ANS_NON_SYSTEM…
/base/notification/distributed_notification_service/services/ans/include/
Dadvanced_notification_service.h461 ErrCode DoesSupportDoNotDisturbMode(bool &doesSupport) override;
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_manager_proxy_test/
Dans_manager_proxy_unit_test.cpp5120 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/
Dans_manager_stub_test.cpp3823 bool doesSupport = true; variable
3825 ErrCode result = ansManagerStub_->DoesSupportDoNotDisturbMode(doesSupport);
/base/notification/distributed_notification_service/services/ans/src/
Dadvanced_notification_service.cpp2985 ErrCode AdvancedNotificationService::DoesSupportDoNotDisturbMode(bool &doesSupport) in DoesSupportDoNotDisturbMode() argument
2998 doesSupport = SUPPORT_DO_NOT_DISTRUB; in DoesSupportDoNotDisturbMode()