Home
last modified time | relevance | path

Searched refs:ReminderTimerTable (Results 1 - 4 of 4) sorted by relevance

/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_table.cpp77 const std::string ReminderTimerTable::TABLE_NAME = "reminder_timer";
78 const std::string ReminderTimerTable::REMINDER_ID = "reminder_id";
79 const std::string ReminderTimerTable::TRIGGER_SECOND = "trigger_second";
80 const std::string ReminderTimerTable::START_DATE_TIME = "start_date_time";
81 const std::string ReminderTimerTable::END_DATE_TIME = "end_date_time";
92 std::string ReminderTimerTable::ADD_COLUMNS = "";
93 std::string ReminderTimerTable::SELECT_COLUMNS = "";
170 void ReminderTimerTable::InitDbColumns() in InitDbColumns()
H A Dreminder_store.cpp133 createSql = "CREATE TABLE IF NOT EXISTS " + ReminderTimerTable::TABLE_NAME + " (" in CreateTable()
134 + ReminderTimerTable::ADD_COLUMNS + ")"; in CreateTable()
243 ret = store.Insert(rowId, ReminderTimerTable::TABLE_NAME, values); in InsertNewReminders()
286 ReminderTimerTable::InitDbColumns(); in Init()
338 ret = rdbStore_->Delete(delRows, ReminderTimerTable::TABLE_NAME, condition, whereArgs); in Delete()
341 ReminderTimerTable::TABLE_NAME.c_str(), reminderId); in Delete()
571 sql = "DELETE FROM " + ReminderTimerTable::TABLE_NAME + " WHERE " in Delete()
572 + ReminderTimerTable::TABLE_NAME + "." + ReminderTimerTable::REMINDER_ID in Delete()
576 ANSR_LOGE("Delete from %{public}s failed", ReminderTimerTable in Delete()
[all...]
H A Dreminder_store_strategy.cpp380 values.PutInt(ReminderTimerTable::REMINDER_ID, reminder->GetReminderId()); in AppendValuesBucket()
381 values.PutLong(ReminderTimerTable::TRIGGER_SECOND, seconds); in AppendValuesBucket()
382 values.PutLong(ReminderTimerTable::START_DATE_TIME, 0); in AppendValuesBucket()
383 values.PutLong(ReminderTimerTable::END_DATE_TIME, 0); in AppendValuesBucket()
407 ReminderStrategy::GetRdbValue<uint64_t>(resultSet, ReminderTimerTable::TRIGGER_SECOND, seconds); in RecoverFromDb()
/base/notification/distributed_notification_service/services/ans/include/
H A Dreminder_table.h248 class ReminderTimerTable { class

Completed in 4 milliseconds