Home
last modified time | relevance | path

Searched refs:GetStore (Results 1 - 21 of 21) sorted by relevance

/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dtransaction_impl.cpp161 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 Dlifecycle_policy.cpp28 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 Drelational_store.cpp453 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 Drelational_store_impl.h67 std::shared_ptr<OHOS::NativeRdb::RdbStore> GetStore() in GetStore() function in OHOS::RdbNdk::RelationalStore
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/udmf/
H A Dudmf_service_impl.cpp142 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 Dstore_cache.h31 std::shared_ptr<Store> GetStore(std::string intention);
H A Dstore_cache.cpp33 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 Dobject_asset_machine.cpp60 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 Dobject_service_impl.cpp357 auto store = AutoCache::GetInstance().GetStore(meta, {}); in ObjectServiceImpl()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/store/
H A Dauto_cache.h49 API_EXPORT Store GetStore(const StoreMetaData &meta, const Watchers &watchers);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/directory/
H A Ddirectory_manager.h57 std::string GetStore(const StoreMetaData &metaData) const;
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Dtransaction_impl.h57 std::shared_ptr<RdbStore> GetStore();
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/directory/
H A Ddirectory_manager.cpp30 : 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 Drdb_service_impl.cpp115 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 &param) 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 Drdb_service_impl.h170 std::shared_ptr<DistributedData::GeneralStore> GetStore(const RdbSyncerParam& param);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/cloud/
H A Dsync_manager.cpp181 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 Dsync_manager.h45 static AutoCache::Store GetStore(const StoreMetaData &meta, int32_t user, bool mustBind = true);
H A Dcloud_service_impl.cpp224 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 Dwater_version_manager.cpp70 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 Dkvdb_service_impl.cpp122 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 Dauto_cache.cpp61 AutoCache::Store AutoCache::GetStore(const StoreMetaData &meta, const Watchers &watchers) in GetStore() function in OHOS::DistributedData::AutoCache

Completed in 19 milliseconds