Searched refs:AppEventStore (Results 1 – 10 of 10) sorted by relevance
24 class AppEventStore; variable28 AppEventBlocksDao(std::shared_ptr<AppEventStore> store);36 std::shared_ptr<AppEventStore> store_;
26 class AppEventStore {28 AppEventStore(const std::string& dir);29 ~AppEventStore() {} in ~AppEventStore()
25 class AppEventStore; variable29 AppEventBlockDao(std::shared_ptr<AppEventStore> store, const std::string& name);48 std::shared_ptr<AppEventStore> store_;
28 class AppEventStore; variable44 std::shared_ptr<AppEventStore> store_;
32 AppEventBlock(std::shared_ptr<AppEventStore> store, const std::string& name);
63 AppEventStore::AppEventStore(const std::string& dir) : dbStore_(nullptr), dirPath_("") in AppEventStore() function in OHOS::HiviewDFX::AppEventStore87 std::shared_ptr<NativeRdb::RdbStore> AppEventStore::GetDbStore() in GetDbStore()98 void AppEventStore::InitDbStoreDir(const std::string& dir) in InitDbStoreDir()108 int AppEventStore::CreateBlockTable(const std::string& name) in CreateBlockTable()129 int AppEventStore::DropBlockTable(const std::string& name) in DropBlockTable()146 std::shared_ptr<NativeRdb::RdbStore> AppEventStore::CreateDbStore() in CreateDbStore()170 int AppEventStore::DestroyDbStore() in DestroyDbStore()
22 AppEventBlock::AppEventBlock(std::shared_ptr<AppEventStore> store, const std::string& name) in AppEventBlock()
31 AppEventBlocksDao::AppEventBlocksDao(std::shared_ptr<AppEventStore> store) : store_(store) in AppEventBlocksDao()
53 store_ = std::make_shared<AppEventStore>(dir); in Open()
33 AppEventBlockDao::AppEventBlockDao(std::shared_ptr<AppEventStore> store, const std::string& name) in AppEventBlockDao()