Home
last modified time | relevance | path

Searched refs:AppEventStore (Results 1 – 10 of 10) sorted by relevance

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/include/
Dapp_event_blocks_dao.h24 class AppEventStore; variable
28 AppEventBlocksDao(std::shared_ptr<AppEventStore> store);
36 std::shared_ptr<AppEventStore> store_;
Dapp_event_store.h26 class AppEventStore {
28 AppEventStore(const std::string& dir);
29 ~AppEventStore() {} in ~AppEventStore()
Dapp_event_block_dao.h25 class AppEventStore; variable
29 AppEventBlockDao(std::shared_ptr<AppEventStore> store, const std::string& name);
48 std::shared_ptr<AppEventStore> store_;
Dapp_event_cache.h28 class AppEventStore; variable
44 std::shared_ptr<AppEventStore> store_;
Dapp_event_block.h32 AppEventBlock(std::shared_ptr<AppEventStore> store, const std::string& name);
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/
Dapp_event_store.cpp63 AppEventStore::AppEventStore(const std::string& dir) : dbStore_(nullptr), dirPath_("") in AppEventStore() function in OHOS::HiviewDFX::AppEventStore
87 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()
Dapp_event_block.cpp22 AppEventBlock::AppEventBlock(std::shared_ptr<AppEventStore> store, const std::string& name) in AppEventBlock()
Dapp_event_blocks_dao.cpp31 AppEventBlocksDao::AppEventBlocksDao(std::shared_ptr<AppEventStore> store) : store_(store) in AppEventBlocksDao()
Dapp_event_cache.cpp53 store_ = std::make_shared<AppEventStore>(dir); in Open()
Dapp_event_block_dao.cpp33 AppEventBlockDao::AppEventBlockDao(std::shared_ptr<AppEventStore> store, const std::string& name) in AppEventBlockDao()