Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_store_impl.cpp103 int RdbStoreImpl::InnerOpen() in InnerOpen()
276 void RdbStoreImpl::NotifyDataChange() in NotifyDataChange()
874 RdbStoreImpl::RdbStoreImpl(const RdbStoreConfig &config) in RdbStoreImpl() function in OHOS::NativeRdb::RdbStoreImpl
882 RdbStoreImpl::RdbStoreImpl(const RdbStoreConfig &config, int &errCode) in RdbStoreImpl() function in OHOS::NativeRdb::RdbStoreImpl
927 RdbStoreImpl::~RdbStoreImpl() in ~RdbStoreImpl()
1551 std::pair<int32_t, RdbStoreImpl::Stmt> RdbStoreImpl::BeginExecuteSql(const std::string& sql) in BeginExecuteSql()
1882 int RdbStoreImpl::RollBack() in RollBack()
1979 int RdbStoreImpl::Commit() in Commit()
2080 bool RdbStoreImpl::IsOpen() const in IsOpen()
2085 std::string RdbStoreImpl::GetPath() in GetPath()
[all …]
H A Drdb_store_manager.cpp61 std::shared_ptr<RdbStoreImpl> RdbStoreManager::GetStoreFromCache(const RdbStoreConfig &config, cons… in GetStoreFromCache()
67 std::shared_ptr<RdbStoreImpl> rdbStore = it->second.lock(); in GetStoreFromCache()
98 std::shared_ptr<RdbStoreImpl> rdbStore = GetStoreFromCache(modifyConfig, path); in GetRdbStore()
106 rdbStore = std::make_shared<RdbStoreImpl>(modifyConfig, errCode); in GetRdbStore()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/cj/src/
H A Drelational_store_impl_rdbstore.cpp58 RdbStoreImpl::RdbStoreImpl(std::shared_ptr<OHOS::NativeRdb::RdbStore> rdbStore) in RdbStoreImpl() function in OHOS::Relational::RdbStoreImpl
63 OHOS::FFI::RuntimeType* RdbStoreImpl::GetClassType() in GetClassType()
152 int32_t RdbStoreImpl::RollBack() in RollBack()
157 int32_t RdbStoreImpl::Commit() in Commit()
162 int32_t RdbStoreImpl::BeginTransaction() in BeginTransaction()
167 int32_t RdbStoreImpl::Backup(const char* destName) in Backup()
172 int32_t RdbStoreImpl::Restore(const char* srcName) in Restore()
184 int32_t RdbStoreImpl::Emit(const char* event) in Emit()
199 void RdbStoreImpl::ExecuteSql(const char* sql, int32_t *errCode) in ExecuteSql()
289 bool RdbStoreImpl::HasRegisteredObserver( in HasRegisteredObserver()
[all …]
H A Drelational_store_ffi.cpp360 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreQuery()
388 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreRemoteQuery()
409 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreDelete()
424 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreSetDistributedTables()
434 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreSetDistributedTablesType()
445 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreSetDistributedTablesConfig()
455 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreObtainDistributedTableName()
464 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreBackUp()
473 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreReStore()
482 auto nativeRdbStore = FFIData::GetData<RdbStoreImpl>(id); in FfiOHOSRelationalStoreCommit()
[all …]
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drdb_store_manager.h31 class RdbStoreImpl; variable
53 …std::shared_ptr<RdbStoreImpl> GetStoreFromCache(const RdbStoreConfig &config, const std::string &p…
59 std::map<std::string, std::weak_ptr<RdbStoreImpl>> storeCache_;
H A Drdb_store_impl.h79 class RdbStoreImpl : public RdbStore {
81 RdbStoreImpl(const RdbStoreConfig &config);
82 RdbStoreImpl(const RdbStoreConfig &config, int &errCode);
83 ~RdbStoreImpl() override;
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/include/
H A Drdb_store_manager.h53 …std::shared_ptr<RdbStoreImpl> GetStoreFromCache(const RdbStoreConfig &config, const std::string &p…
59 std::map<std::string, std::weak_ptr<RdbStoreImpl>> storeCache_;
H A Drdb_store_impl.h34 class RdbStoreImpl : public RdbStore {
36 RdbStoreImpl(const RdbStoreConfig &config);
37 RdbStoreImpl(const RdbStoreConfig &config, int &errCode);
38 ~RdbStoreImpl() override;
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/cj/include/
H A Drelational_store_impl_rdbstore.h53 class RdbStoreImpl : public OHOS::FFI::FFIData {
60 explicit RdbStoreImpl(std::shared_ptr<OHOS::NativeRdb::RdbStore> rdbStore);
/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/fuzztest/rdbimpl_fuzzer/
H A Drdbimpl_fuzzer.cpp26 RdbStoreImpl rdbStoreImpl(RdbStoreConfig("name"), errorCode); in RdbStoreImplFuzz()