/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | transaction_impl.cpp | 161 std::shared_ptr<RdbStore> TransactionImpl::GetStore() in GetStore() function in OHOS::NativeRdb::TransactionImpl 169 auto store = GetStore(); in Insert() 179 auto store = GetStore(); in BatchInsert() 191 auto store = GetStore(); in BatchInsert() 202 auto store = GetStore(); in Update() 213 auto store = GetStore(); in Update() 225 auto store = GetStore(); in Delete() 237 auto store = GetStore(); in Delete() 255 auto store = GetStore(); in QueryByStep() 269 auto store = GetStore(); in QueryByStep() [all...] |
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/udmf/lifecycle/ |
H A D | lifecycle_policy.cpp | 28 auto store = StoreCache::GetInstance().GetStore(key.intention); in OnGot() 42 auto store = StoreCache::GetInstance().GetStore(intention); in OnStart() 56 auto store = StoreCache::GetInstance().GetStore(intention); in OnTimeout()
|
/foundation/distributeddatamgr/relational_store/interfaces/ndk/src/ |
H A D | relational_store.cpp | 453 rdbStore->GetStore()->Insert(rowId, table, bucket->Get()); in OH_Rdb_Insert() 466 rdbStore->GetStore()->Update(updatedRows, bucket->Get(), predicate->Get()); in OH_Rdb_Update() 478 rdbStore->GetStore()->Delete(deletedRows, predicate->Get()); in OH_Rdb_Delete() 498 rdbStore->GetStore()->QueryByStep(predicate->Get(), columns); in OH_Rdb_Query() 512 rdbStore->GetStore()->GetDbType() == OHOS::NativeRdb::DB_VECTOR in OH_Rdb_ExecuteQuery() 513 ? rdbStore->GetStore()->QueryByStep(sql, std::vector<std::string>{}) in OH_Rdb_ExecuteQuery() 514 : rdbStore->GetStore()->QuerySql(sql, std::vector<std::string>{}); in OH_Rdb_ExecuteQuery() 528 rdbStore->GetStore()->ExecuteSql(sql, std::vector<OHOS::NativeRdb::ValueObject>{})); in OH_Rdb_Execute() 538 (rdbStore->GetStore()->Execute(sql, std::vector<OHOS::NativeRdb::ValueObject>{}, trxId)).first); in OH_Rdb_ExecuteByTrxId() 547 return ConvertorErrorCode::NativeToNdk(rdbStore->GetStore() in OH_Rdb_BeginTransaction() [all...] |
H A D | relational_store_impl.h | 67 std::shared_ptr<OHOS::NativeRdb::RdbStore> GetStore() in GetStore() function in OHOS::RdbNdk::RelationalStore
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/udmf/ |
H A D | udmf_service_impl.cpp | 142 auto store = StoreCache::GetInstance().GetStore(intention); in SaveData() 200 auto store = StoreCache::GetInstance().GetStore(key.intention); in RetrieveData() 373 auto store = StoreCache::GetInstance().GetStore(key.intention); in UpdateData() 456 auto store = StoreCache::GetInstance().GetStore(key.intention); in GetSummary() 494 auto store = StoreCache::GetInstance().GetStore(key.intention); in AddPrivilege() 534 auto store = StoreCache::GetInstance().GetStore(key.intention); in Sync() 576 auto store = StoreCache::GetInstance().GetStore(key.intention); in IsRemoteData() 614 auto store = StoreCache::GetInstance().GetStore(intention); in SetAppShareOption() 640 auto store = StoreCache::GetInstance().GetStore(intention); in GetAppShareOption() 669 auto store = StoreCache::GetInstance().GetStore(intentio in RemoveAppShareOption() [all...] |
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/udmf/store/ |
H A D | store_cache.h | 31 std::shared_ptr<Store> GetStore(std::string intention);
|
H A D | store_cache.cpp | 33 std::shared_ptr<Store> StoreCache::GetStore(std::string intention)
in GetStore() function in OHOS::UDMF::StoreCache
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/object/ |
H A D | object_asset_machine.cpp | 60 static AutoCache::Store GetStore(ChangedAssetInfo& changedAsset); 186 auto store = GetStore(changedAsset); in UpdateStore() 290 static AutoCache::Store GetStore(ChangedAssetInfo& changedAsset) in GetStore() function 303 return AutoCache::GetInstance().GetStore(meta, {}); in GetStore()
|
H A D | object_service_impl.cpp | 357 auto store = AutoCache::GetInstance().GetStore(meta, {}); in ObjectServiceImpl()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/store/ |
H A D | auto_cache.h | 49 API_EXPORT Store GetStore(const StoreMetaData &meta, const Watchers &watchers);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/directory/ |
H A D | directory_manager.h | 57 std::string GetStore(const StoreMetaData &metaData) const;
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | transaction_impl.h | 57 std::shared_ptr<RdbStore> GetStore();
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/directory/ |
H A D | directory_manager.cpp | 30 : actions_({ { "{security}", &DirectoryManager::GetSecurity }, { "{store}", &DirectoryManager::GetStore }, in DirectoryManager() 118 std::string DirectoryManager::GetStore(const StoreMetaData &metaData) const in GetStore() function in OHOS::DistributedData::DirectoryManager
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_service_impl.cpp | 115 auto store = AutoCache::GetInstance().GetStore(meta, watchers); in RdbServiceImpl() 180 AutoCache::GetInstance().GetStore(entry, GetWatchers(entry.tokenId, entry.storeId)); in ResolveAutoLaunch() 264 std::shared_ptr<DistributedData::GeneralStore> RdbServiceImpl::GetStore(const RdbSyncerParam ¶m) in GetStore() function in OHOS::DistributedRdb::RdbServiceImpl 269 auto store = AutoCache::GetInstance().GetStore(storeMetaData, watchers); in GetStore() 295 ZLOGE("no meta. bundleName:%{public}s, storeName:%{public}s. GetStore failed", param.bundleName_.c_str(), in SetDistributedTables() 309 auto store = GetStore(param); in SetDistributedTables() 311 ZLOGE("bundleName:%{public}s, storeName:%{public}s. GetStore failed", param.bundleName_.c_str(), in SetDistributedTables() 399 auto store = GetStore(param); 432 auto store = GetStore(param); 877 auto store = GetStore(para [all...] |
H A D | rdb_service_impl.h | 170 std::shared_ptr<DistributedData::GeneralStore> GetStore(const RdbSyncerParam& param);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/cloud/ |
H A D | sync_manager.cpp | 181 auto store = GetStore(meta, storeInfo.user); in GetLockChangeHandler() 397 auto store = GetStore(meta, storeInfo.user); 555 AutoCache::Store SyncManager::GetStore(const StoreMetaData &meta, int32_t user, bool mustBind) 566 auto store = AutoCache::GetInstance().GetStore(meta, {});
|
H A D | sync_manager.h | 45 static AutoCache::Store GetStore(const StoreMetaData &meta, int32_t user, bool mustBind = true);
|
H A D | cloud_service_impl.cpp | 224 auto store = AutoCache::GetInstance().GetStore(meta, {}); in DoClean() 470 auto store = AutoCache::GetInstance().GetStore(storeMetaData, {}); in QueryStatistics() 1016 AutoCache::Store store = SyncManager::GetStore(meta, storeInfo.user, true); in PreShare()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/waterversion/ |
H A D | water_version_manager.cpp | 70 auto store = AutoCache::GetInstance().GetStore(StoreMetaData(storeMeta), {}); in Init() 197 auto store = AutoCache::GetInstance().GetStore(storeMetaData, {}); in InitMeta()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | kvdb_service_impl.cpp | 122 auto store = AutoCache::GetInstance().GetStore(meta, watchers); in Init() 777 AutoCache::GetInstance().GetStore(storeMeta, watchers); in ResolveAutoLaunch() 1071 auto store = AutoCache::GetInstance().GetStore(meta, watcher); in DoSyncBegin() 1073 ZLOGE("GetStore failed! appId:%{public}s storeId:%{public}s storeId length:%{public}zu dir:%{public}s", in DoSyncBegin() 1390 auto store = AutoCache::GetInstance().GetStore(metaData, watcher); in RemoveDeviceData() 1392 ZLOGE("GetStore failed! appId:%{public}s storeId:%{public}s dir:%{public}s", metaData.bundleName.c_str(), in RemoveDeviceData()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/store/ |
H A D | auto_cache.cpp | 61 AutoCache::Store AutoCache::GetStore(const StoreMetaData &meta, const Watchers &watchers) in GetStore() function in OHOS::DistributedData::AutoCache
|