Home
last modified time | relevance | path

Searched refs:rruleWantAgentInfo_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dreminder_request_calendar.cpp59 rruleWantAgentInfo_ = other.rruleWantAgentInfo_; in ReminderRequestCalendar()
69 rruleWantAgentInfo_ = wantAgentInfo; in SetRRuleWantAgentInfo()
125 return rruleWantAgentInfo_; in GetRRuleWantAgentInfo()
330 if (rruleWantAgentInfo_ == nullptr) { in IsPullUpService()
687 if (rruleWantAgentInfo_ != nullptr) { in Marshalling()
797 if (rruleWantAgentInfo_ == nullptr) { in SerializationRRule()
801 root["pkgName"] = rruleWantAgentInfo_->pkgName; in SerializationRRule()
802 root["abilityName"] = rruleWantAgentInfo_->abilityName; in SerializationRRule()
803 root["uri"] = rruleWantAgentInfo_->uri; in SerializationRRule()
840 rruleWantAgentInfo_ = std::make_shared<WantAgentInfo>(); in DeserializationRRule()
[all …]
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H A Dreminder_request_calendar_test.cpp1177 calendar->rruleWantAgentInfo_->abilityName = "MainAbility";
1178 calendar->rruleWantAgentInfo_->uri = "test";
1198 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1202 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1207 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1211 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1216 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1220 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1225 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
1229 EXPECT_EQ(calendar->rruleWantAgentInfo_, nullptr);
[all …]
H A Dreminder_store_test.cpp608 calendar->rruleWantAgentInfo_ = std::make_shared<ReminderRequest::WantAgentInfo>();
609 calendar->rruleWantAgentInfo_->pkgName = "pkgName";
610 calendar->rruleWantAgentInfo_->abilityName = "abilityName";
611 calendar->rruleWantAgentInfo_->uri = "uri";
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dreminder_request_calendar.h384 std::shared_ptr<WantAgentInfo> rruleWantAgentInfo_ = nullptr; variable