Home
last modified time | relevance | path

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

/base/notification/distributed_notification_service/frameworks/ans/src/
Dreminder_request.cpp52 const uint8_t ReminderRequest::REMINDER_STATUS_ALERTING = 2; member in OHOS::Notification::ReminderRequest
154 …if ((state_ & (REMINDER_STATUS_SHOWING | REMINDER_STATUS_ALERTING | REMINDER_STATUS_ACTIVE)) == 0)… in CanRemove()
261 if ((state_ & REMINDER_STATUS_ALERTING) != 0) { in OnClose()
262 SetState(false, REMINDER_STATUS_ALERTING, "onClose"); in OnClose()
351 SetState(false, REMINDER_STATUS_ALERTING | REMINDER_STATUS_SHOWING | REMINDER_STATUS_SNOOZE, in OnSameNotificationIdCovered()
373 SetState(true, REMINDER_STATUS_ALERTING, "OnShow"); in OnShow()
390 if ((state_ & REMINDER_STATUS_ALERTING) != 0) { in OnSnooze()
391 SetState(false, REMINDER_STATUS_ALERTING, "onSnooze()"); in OnSnooze()
430 if ((state_ & REMINDER_STATUS_ALERTING) == 0) { in OnTerminate()
434 SetState(false, REMINDER_STATUS_ALERTING, "onTerminate"); in OnTerminate()
[all …]
/base/notification/distributed_notification_service/interfaces/inner_api/
Dreminder_request.h681 static const uint8_t REMINDER_STATUS_ALERTING; variable