Home
last modified time | relevance | path

Searched refs:notificationData (Results 1 – 8 of 8) sorted by relevance

/base/notification/distributed_notification_service/frameworks/ans/src/
Dpush_callback_stub.cpp41 auto notificationData = data.ReadString(); in OnRemoteRequest() local
46 handler->PostSyncTask([weak, notificationData, &ret]() { in OnRemoteRequest()
53 ret = pushCallBackStub->OnCheckNotification(notificationData); in OnRemoteRequest()
69 bool PushCallBackProxy::OnCheckNotification(const std::string &notificationData) in OnCheckNotification() argument
80 if (!data.WriteString(notificationData)) { in OnCheckNotification()
/base/notification/distributed_notification_service/frameworks/js/napi/include/manager/
Dnapi_push_callback.h39 bool OnCheckNotification(const std::string &notificationData);
46 …const std::string &notificationData, std::string &pkgName, int32_t &notifyId, int32_t &contentType…
/base/notification/distributed_notification_service/frameworks/js/napi/src/manager/
Dnapi_push_callback.cpp53 bool JSPushCallBack::OnCheckNotification(const std::string &notificationData) in OnCheckNotification() argument
69 ConvertJsonStringToValue(notificationData, pkgName, notifyId, contentType); in OnCheckNotification()
87 …const std::string &notificationData, std::string &pkgName, int32_t &notifyId, int32_t &contentType) in ConvertJsonStringToValue() argument
89 nlohmann::json jsonobj = nlohmann::json::parse(notificationData); in ConvertJsonStringToValue()
/base/notification/distributed_notification_service/services/ans/test/unittest/
Dpush_callback_stub_test.cpp41 bool OnCheckNotification(const std::string &notificationData) override in OnCheckNotification() argument
128 std::string notificationData = "this is notificationData"; variable
129 int ret = pushCallBackProxy.OnCheckNotification(notificationData);
/base/notification/distributed_notification_service/services/ans/test/unittest/mock/
Dmock_push_callback_stub.cpp21 bool MockPushCallBackStub::OnCheckNotification(const std::string &notificationData) in OnCheckNotification() argument
/base/notification/distributed_notification_service/interfaces/inner_api/
Dpush_callback_interface.h36 virtual bool OnCheckNotification(const std::string &notificationData) = 0;
Dpush_callback_proxy.h42 bool OnCheckNotification(const std::string &notificationData) override;
/base/notification/distributed_notification_service/services/ans/test/unittest/mock/include/
Dmock_push_callback_stub.h29 virtual bool OnCheckNotification(const std::string &notificationData) override;