Home
last modified time | relevance | path

Searched refs:REMINDER_DB_DIR (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H A Dreminder_store_test.cpp50 …NativeRdb::RdbHelper::DeleteRdbStore(ReminderStore::REMINDER_DB_DIR + ReminderStore::REMINDER_DB_N… in TearDown()
55 std::string dbConfig = ReminderStore::REMINDER_DB_DIR + "notification_test.db"; in InitStore()
69 … NativeRdb::RdbHelper::DeleteRdbStore(ReminderStore::REMINDER_DB_DIR + "notification_test.db"); in ClearStore()
297 std::string dbConfig = ReminderStore::REMINDER_DB_DIR + "notification_test.db";
307 NativeRdb::RdbHelper::DeleteRdbStore(ReminderStore::REMINDER_DB_DIR + "notification_test.db");
/ohos5.0/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_store.cpp46 const std::string ReminderStore::REMINDER_DB_DIR = "/data/service/el1/public/notification/"; member in OHOS::Notification::ReminderStore
276 if (access(REMINDER_DB_DIR.c_str(), F_OK) != 0) { in Init()
277 int createDir = mkdir(REMINDER_DB_DIR.c_str(), S_IRWXU); in Init()
279 ANSR_LOGE("Failed to create directory %{private}s", REMINDER_DB_DIR.c_str()); in Init()
290 std::string dbConfig = REMINDER_DB_DIR + REMINDER_DB_NAME; in Init()
/ohos5.0/base/notification/distributed_notification_service/services/ans/include/
H A Dreminder_store.h61 static const std::string REMINDER_DB_DIR; variable