| /foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
| D | distributeddb_interfaces_encrypt_database_test.cpp | 121 KvStoreDelegate *kvStore = nullptr; in CheckRekeyWithExistedSnapshot() local 164 KvStoreDelegate *kvStore = nullptr; in CheckRekeyWithExistedObserver() local 358 KvStoreDelegate *kvStore = nullptr; variable 437 KvStoreNbDelegate *kvStore = nullptr; variable 492 KvStoreNbDelegate *kvStore = nullptr; variable 538 KvStoreNbDelegate *kvStore = nullptr; variable
|
| D | distributeddb_interfaces_nb_delegate_schema_put_test.cpp | 78 void CheckPutSchemaData(KvStoreNbDelegate *kvStore) in CheckPutSchemaData() 131 void CheckPutBatchSchemaData(KvStoreNbDelegate *kvStore) in CheckPutBatchSchemaData()
|
| D | distributeddb_interfaces_auto_launch_test.cpp | 298 auto kvStore = static_cast<SQLiteSingleVerNaturalStore *>(GetKvDB(storeId)); in PutSyncData() local 320 auto kvStore = static_cast<SQLiteSingleVerNaturalStore *>(GetKvDB(storeId)); in GetSyncData() local 532 auto kvStore = static_cast<SQLiteSingleVerNaturalStore *>(GetKvDB(storeId)); in SetAutoLaunchLifeCycleTime() local
|
| /foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/src/ |
| D | js_single_kv_store.cpp | 91 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in Get() local 171 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in GetEntries() local 224 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in GetResultSet() local 275 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in CloseResultSet() local 310 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in GetResultSize() local 350 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in RemoveDeviceData() local 391 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in Sync() local 420 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in SetSyncParam() local 445 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->GetNative(); in GetSecurityLevel() local 473 JsSingleKVStore* kvStore = new (std::nothrow) JsSingleKVStore(storeId); in New() local [all …]
|
| D | js_device_kv_store.cpp | 101 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in Get() local 210 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in GetEntries() local 269 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in GetResultSet() local 325 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in CloseResultSet() local 361 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in GetResultSize() local 404 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in RemoveDeviceData() local 445 auto& kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetNative(); in Sync() local 468 JsDeviceKVStore* kvStore = new (std::nothrow) JsDeviceKVStore(storeId); in New() local 473 auto* kvStore = reinterpret_cast<JsDeviceKVStore*>(data); in New() local
|
| D | js_kv_store.cpp | 80 void JsKVStore::SetNative(std::shared_ptr<SingleKvStore>& kvStore) in SetNative() 101 JsKVStore* kvStore = nullptr; in IsInstanceOf() local 135 auto &kvStore = reinterpret_cast<JsKVStore *>(ctxt->native)->kvStore_; in Put() local 171 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in Delete() local 254 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in PutBatch() local 290 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in DeleteBatch() local 312 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in StartTransaction() local 334 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in Commit() local 356 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in Rollback() local 387 auto& kvStore = reinterpret_cast<JsKVStore*>(ctxt->native)->kvStore_; in EnableSync() local [all …]
|
| D | js_kv_manager.cpp | 91 JsKVStore* kvStore = nullptr; member 138 std::shared_ptr<DistributedKv::SingleKvStore> kvStore; in GetKVStore() local 174 napi_value kvStore; in CloseKVStore() member
|
| /foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/ |
| D | distributed_kv_data_manager_test.cpp | 308 std::shared_ptr<SingleKvStore> kvStore; variable 352 std::shared_ptr<SingleKvStore> kvStore; variable 371 std::shared_ptr<SingleKvStore> kvStore; variable 522 std::shared_ptr<SingleKvStore> kvStore; variable 549 std::shared_ptr<SingleKvStore> kvStore; variable 571 std::shared_ptr<SingleKvStore> kvStore; variable
|
| D | distributed_kv_data_manager_encrypt_test.cpp | 116 std::shared_ptr<SingleKvStore> kvStore; variable
|
| /foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/ |
| D | store_manager.cpp | 40 …auto kvStore = StoreFactory::GetInstance().GetOrOpenStore(appId, storeId, options, status, isCreat… in GetKVStore() local 59 Status StoreManager::CloseKVStore(const AppId &appId, std::shared_ptr<SingleKvStore> &kvStore) in CloseKVStore()
|
| D | store_factory.cpp | 41 std::shared_ptr<SingleStoreImpl> kvStore; in GetOrOpenStore() local
|
| /foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/src/ |
| D | js_single_kv_store.cpp | 62 void JsSingleKVStore::SetKvStorePtr(std::shared_ptr<SingleKvStore> kvStore) in SetKvStorePtr() 189 auto &kvStore = reinterpret_cast<JsSingleKVStore *>(ctxt->native)->kvStore_; in Put() local 242 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in Delete() local 246 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in Delete() local 343 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in PutBatch() local 380 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in DeleteBatch() local 401 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in StartTransaction() local 423 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in Commit() local 445 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in Rollback() local 478 auto& kvStore = reinterpret_cast<JsSingleKVStore*>(ctxt->native)->kvStore_; in EnableSync() local [all …]
|
| D | js_device_kv_store.cpp | 110 auto kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetKvStorePtr(); in Get() local 201 auto kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetKvStorePtr(); in GetEntries() local 252 auto kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetKvStorePtr(); in GetResultSet() local 294 auto kvStore = reinterpret_cast<JsDeviceKVStore*>(ctxt->native)->GetKvStorePtr(); in GetResultSize() local 322 JsDeviceKVStore* kvStore = new (std::nothrow) JsDeviceKVStore(storeId); in New() local 327 auto* kvStore = reinterpret_cast<JsDeviceKVStore*>(data); in New() local
|
| D | js_kv_manager.cpp | 93 JsSingleKVStore* kvStore = nullptr; member 143 std::shared_ptr<DistributedKv::SingleKvStore> kvStore; in GetKVStore() local 177 napi_value kvStore; in CloseKVStore() member
|
| /foundation/multimedia/media_library/frameworks/services/media_distributed/include/database_manage/ |
| D | medialibrary_sync_operation.h | 36 std::shared_ptr<DistributedKv::SingleKvStore> kvStore; member
|
| /foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/test/ |
| D | single_store_impl_test.cpp | 174 std::shared_ptr<SingleKvStore> kvStore; variable 486 std::shared_ptr<SingleKvStore> kvStore; variable 530 std::shared_ptr<SingleKvStore> kvStore; variable 1005 std::shared_ptr<SingleKvStore> kvStore; variable 1343 std::shared_ptr<SingleKvStore> kvStore; variable 1420 std::shared_ptr<SingleKvStore> kvStore; variable 1444 std::shared_ptr<SingleKvStore> kvStore; variable 1467 std::shared_ptr<SingleKvStore> kvStore; variable 1491 std::shared_ptr<SingleKvStore> kvStore; variable 1519 std::shared_ptr<SingleKvStore> kvStore; variable [all …]
|
| /foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/ |
| D | kv_store_delegate_manager.cpp | 215 auto kvStore = new (std::nothrow) KvStoreDelegateImpl(conn, storeId); in GetKvStore() local 230 DBStatus KvStoreDelegateManager::SetObserverNotifier(KvStoreNbDelegate *kvStore, in SetObserverNotifier() 331 auto kvStore = new (std::nothrow) KvStoreNbDelegateImpl(conn, storeId); in GetKvStore() local 355 DBStatus KvStoreDelegateManager::CloseKvStore(KvStoreDelegate *kvStore) in CloseKvStore() 378 DBStatus KvStoreDelegateManager::CloseKvStore(KvStoreNbDelegate *kvStore) in CloseKvStore()
|
| /foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
| D | upgrade.cpp | 64 auto kvStore = GetDBStore(meta, pwd); in UpdateStore() local 107 auto kvStore = GetDBStore(meta, pwd); in UpdateUuid() local
|
| /foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
| D | store_manager.cpp | 54 …auto kvStore = StoreFactory::GetInstance().GetOrOpenStore(appId, storeId, options, status, isCreat… in GetKVStore() local
|
| D | store_factory.cpp | 63 std::shared_ptr<SingleStoreImpl> kvStore; in GetOrOpenStore() local 207 DBStore *kvStore; in ReKey() local
|
| /foundation/distributeddatamgr/kv_store/test/fuzztest/distributedkvdatamanager_fuzzer/ |
| D | distributedkvdatamanager_fuzzer.cpp | 115 std::shared_ptr<SingleKvStore> kvStore; in CloseKvStoreFuzz() local 127 std::shared_ptr<SingleKvStore> kvStore; in DeleteKvStoreFuzz() local
|
| /foundation/deviceprofile/device_info_manager/services/core/test/unittest/ |
| D | kv_adapter_test.cpp | 42 shared_ptr<IKVAdapter> kvStore = nullptr; variable
|
| /foundation/distributeddatamgr/kv_store/test/unittest/distributedKVStore/ |
| D | SchemaJsTest.js | 25 var kvStore = null; variable
|
| /foundation/multimedia/media_library/frameworks/services/media_thumbnail/src/ |
| D | thumbnail_generate_helper.cpp | 71 auto kvStore = MediaLibraryKvStoreManager::GetInstance() in CreateAstcBatch() local
|
| /foundation/multimedia/media_library/frameworks/services/media_thumbnail/include/ |
| D | thumbnail_utils.h | 36 EXPORT std::shared_ptr<DistributedKv::SingleKvStore> kvStore; member
|