Home
last modified time | relevance | path

Searched refs:FillCloudAssetForDownload (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Dmock_icloud_sync_storage_interface.h47 MOCK_METHOD3(FillCloudAssetForDownload, int(const std::string &, VBucket &, bool));
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_cloud_kv_store.h69 …int FillCloudAssetForDownload(const std::string &tableName, VBucket &asset, bool isDownloadSuccess…
H A Dsqlite_cloud_kv_store.cpp367 int SqliteCloudKvStore::FillCloudAssetForDownload(const std::string &tableName, VBucket &asset, boo… in FillCloudAssetForDownload() function in DistributedDB::SqliteCloudKvStore
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/cloud/
H A Ddistributeddb_cloud_meta_data_test.cpp244 EXPECT_EQ(proxyObj.FillCloudAssetForDownload(TABLE_NAME_1, assetInfo, true), -E_INVALID_DB);
348 EXPECT_EQ(obj.FillCloudAssetForDownload(TABLE_NAME_1, assetInfo, true), -E_INVALID_DB);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Dstorage_proxy.h99 …int FillCloudAssetForDownload(const std::string &tableName, VBucket &asset, bool isDownloadSuccess…
H A Dicloud_sync_storage_interface.h142 …virtual int FillCloudAssetForDownload(const std::string &tableName, VBucket &asset, bool isDownloa…
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dstorage_proxy.cpp415 int StorageProxy::FillCloudAssetForDownload(const std::string &tableName, VBucket &asset, bool isDo… in FillCloudAssetForDownload() function in DistributedDB::StorageProxy
425 return store_->FillCloudAssetForDownload(tableName, asset, isDownloadSuccess); in FillCloudAssetForDownload()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
H A Drelational_sync_able_storage.h177 …int FillCloudAssetForDownload(const std::string &tableName, VBucket &asset, bool isDownloadSuccess…
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_storage_executor.h137 …int FillCloudAssetForDownload(const TableSchema &tableSchema, VBucket &vBucket, bool isDownloadSuc…
H A Dsqlite_single_ver_relational_storage_extend_executor.cpp96 int SQLiteSingleVerRelationalStorageExecutor::FillCloudAssetForDownload(const TableSchema &tableSch… in FillCloudAssetForDownload() function in DistributedDB::SQLiteSingleVerRelationalStorageExecutor
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
H A Drelational_sync_able_storage.cpp1341 int RelationalSyncAbleStorage::FillCloudAssetForDownload(const std::string &tableName, VBucket &ass… in FillCloudAssetForDownload() function in DistributedDB::RelationalSyncAbleStorage
1357 errCode = transactionHandle_->FillCloudAssetForDownload(tableSchema, asset, isDownloadSuccess); in FillCloudAssetForDownload()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
H A Dcloud_syncer.cpp594 ret = storageProxy_->FillCloudAssetForDownload(tableName, normalAssets, true); in FillCloudAssets()
601 ret = storageProxy_->FillCloudAssetForDownload(tableName, failedAssets, false); in FillCloudAssets()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_relational_cloud_syncable_storage_test.cpp329 …ASSERT_EQ(g_storageProxy->FillCloudAssetForDownload(g_tableName, vBucket, isDownloadSuccess), E_OK… in fillCloudAssetTest()