Home
last modified time | relevance | path

Searched refs:NotificationDistributedOptions (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_distributed_options.cpp21 NotificationDistributedOptions::NotificationDistributedOptions( in NotificationDistributedOptions() function in OHOS::Notification::NotificationDistributedOptions
26 void NotificationDistributedOptions::SetDistributed(bool distribute) in SetDistributed()
31 bool NotificationDistributedOptions::IsDistributed() const in IsDistributed()
56 std::string NotificationDistributedOptions::Dump() in Dump()
77 bool NotificationDistributedOptions::ToJson(nlohmann::json &jsonObject) const in ToJson()
86 NotificationDistributedOptions *NotificationDistributedOptions::FromJson(const nlohmann::json &json… in FromJson()
93 auto pOpt = new (std::nothrow) NotificationDistributedOptions(); in FromJson()
115 bool NotificationDistributedOptions::Marshalling(Parcel &parcel) const in Marshalling()
135 NotificationDistributedOptions *NotificationDistributedOptions::Unmarshalling(Parcel &parcel) in Unmarshalling()
137 auto objptr = new (std::nothrow) NotificationDistributedOptions(); in Unmarshalling()
[all …]
H A Dnotification_request.cpp702 NotificationDistributedOptions NotificationRequest::GetNotificationDistributedOptions() const in GetNotificationDistributedOptions()
1683 auto pOpt = parcel.ReadParcelable<NotificationDistributedOptions>(); in ReadFromParcel()
2293 … auto *pOpt = NotificationJsonConverter::ConvertFromJson<NotificationDistributedOptions>(optObj); in ConvertJsonToNotificationDistributedOptions()
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dnotification_distributed_options.h24 class NotificationDistributedOptions : public Parcelable, public NotificationJsonConvertionBase {
26 NotificationDistributedOptions() = default;
35 NotificationDistributedOptions(
38 ~NotificationDistributedOptions() = default;
103 static NotificationDistributedOptions *FromJson(const nlohmann::json &jsonObject);
119 static NotificationDistributedOptions *Unmarshalling(Parcel &parcel);
H A Dnotification_request.h1088 NotificationDistributedOptions GetNotificationDistributedOptions() const;
1541 NotificationDistributedOptions distributedOptions_;
/ohos5.0/base/notification/distributed_notification_service/test/fuzztest/notificationdistributedoptions_fuzzer/
H A Dnotificationdistributedoptions_fuzzer.cpp31 …Notification::NotificationDistributedOptions notificationDistributedOptions(distribute, dvsDisplay… in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/src/
H A Dcommon_convert_notification.cpp42NotificationDistributedOptions options = notification->GetNotificationRequest().GetNotificationDis… in SetNotificationByDistributedOptions()