Home
last modified time | relevance | path

Searched refs:repeatDays_ (Results 1 – 2 of 2) sorted by relevance

/base/notification/distributed_notification_service/frameworks/ans/src/
Dreminder_request_alarm.cpp52 this->repeatDays_ = other.repeatDays_; in ReminderRequestAlarm()
53 …_LOGD("hour_=%{public}d, minute_=%{public}d, repeatDays_=%{public}d", hour_, minute_, repeatDays_); in ReminderRequestAlarm()
70 if ((repeatDays_ != 0) || ((GetTimeInterval() > 0) && (GetSnoozeTimes() > 0))) { in IsRepeatReminder()
91 repeatDays_ |= 1 << (*it - 1); in SetDaysOfWeek()
93 repeatDays_ &= ~(1 << (*it - 1)); in SetDaysOfWeek()
100 if (ignoreRepeat || (repeatDays_)) { in PreGetNextTriggerTimeIgnoreSnooze()
160 if (repeatDays_ == 0) { in GetNextAlarm()
180 return (repeatDays_ & (1 << (day - 1))) > 0; in IsRepeatDay()
208 return repeatDays_; in GetRepeatDay()
232 if (repeatDays_ == 0) { in UpdateNextReminder()
[all …]
/base/notification/distributed_notification_service/interfaces/inner_api/
Dreminder_request_alarm.h164 uint8_t repeatDays_ = {0}; variable