Searched refs:hashcodes (Results 1 – 10 of 10) sorted by relevance
/base/notification/distributed_notification_service/frameworks/core/test/unittest/ans_notification_branch_test/ |
D | ans_notification_branch_test.cpp | 180 …ErrCode RemoveNotifications(const std::vector<std::string> &hashcodes, int32_t removeReason) overr… in RemoveNotifications() argument 459 std::vector<std::string> hashcodes; variable 461 ErrCode ret = ansNotification->RemoveNotifications(hashcodes, removeReason); 477 std::vector<std::string> hashcodes; variable 478 hashcodes.emplace_back(hashcode); 481 ErrCode ret = ansNotification->RemoveNotifications(hashcodes, removeReason); 497 std::vector<std::string> hashcodes; variable 498 hashcodes.emplace_back(hashcode); 502 ansNotification->RemoveNotifications(hashcodes, removeReason);
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/subscribe/ |
D | napi_remove.cpp | 32 if (!removeInfo->params.hashcodes.empty()) { in NapiRemoveExecuteCallback() 33 … removeInfo->info.errorCode = NotificationHelper::RemoveNotifications(removeInfo->params.hashcodes, in NapiRemoveExecuteCallback()
|
/base/notification/distributed_notification_service/frameworks/js/napi/include/ |
D | remove.h | 33 std::vector<std::string> hashcodes; member
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/ |
D | remove.cpp | 70 std::vector<std::string> hashcodes; in ParseHashcodeTypeParams() local 71 auto retValue = Common::GetHashCodes(env, argv[PARAM0], hashcodes); in ParseHashcodeTypeParams() 76 params.hashcodes = hashcodes; in ParseHashcodeTypeParams()
|
/base/notification/distributed_notification_service/interfaces/inner_api/ |
D | notification_helper.h | 384 …static ErrCode RemoveNotifications(const std::vector<std::string> hashcodes, int32_t removeReason);
|
/base/notification/distributed_notification_service/frameworks/ans/src/ |
D | notification_helper.cpp | 201 ErrCode NotificationHelper::RemoveNotifications(const std::vector<std::string> hashcodes, int32_t r… in RemoveNotifications() argument 203 …return DelayedSingleton<AnsNotification>::GetInstance()->RemoveNotifications(hashcodes, removeReas… in RemoveNotifications()
|
/base/notification/distributed_notification_service/frameworks/core/include/ |
D | ans_notification.h | 382 ErrCode RemoveNotifications(const std::vector<std::string> hashcodes, int32_t removeReason);
|
D | ans_manager_interface.h | 278 …virtual ErrCode RemoveNotifications(const std::vector<std::string> &hashcodes, int32_t removeReaso…
|
D | ans_manager_proxy.h | 258 …ErrCode RemoveNotifications(const std::vector<std::string> &hashcodes, int32_t removeReason) overr…
|
/base/notification/distributed_notification_service/frameworks/core/src/ |
D | ans_notification.cpp | 491 ErrCode AnsNotification::RemoveNotifications(const std::vector<std::string> hashcodes, int32_t remo… in RemoveNotifications() argument 493 if (hashcodes.empty()) { in RemoveNotifications() 503 return ansManagerProxy_->RemoveNotifications(hashcodes, removeReason); in RemoveNotifications()
|