/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/ |
H A D | distributeddb_cloud_syncer_download_test.cpp | 242 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 295 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 341 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 374 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 432 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 476 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 521 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 577 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 609 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 731 EXPECT_CALL(*g_iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK));
|
H A D | mock_icloud_sync_storage_interface.h | 43 MOCK_METHOD2(PutCloudSyncData, int(const std::string &, DownloadData &));
|
H A D | distributeddb_cloud_syncer_progress_manager_test.cpp | 81 EXPECT_CALL(*iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 138 EXPECT_CALL(*iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK)); 195 EXPECT_CALL(*iCloud, PutCloudSyncData(_, _)).WillRepeatedly(Return(E_OK));
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/cloud/ |
H A D | distributeddb_cloud_save_cloud_data_test.cpp | 846 EXPECT_EQ(storageProxy->PutCloudSyncData(g_tableName, downloadData), expectCode); in SaveCloudDataTest() 1070 EXPECT_EQ(storageProxy->PutCloudSyncData(g_tableName, downloadData), E_OK); 1103 EXPECT_EQ(storageProxy->PutCloudSyncData(g_tableName, downloadData), E_OK); 1160 EXPECT_EQ(storageProxy->PutCloudSyncData(g_tableName, downloadData), E_OK); 1196 EXPECT_EQ(storageProxy->PutCloudSyncData(g_tableName, downloadData), E_OK); 1260 EXPECT_EQ(storageProxy->PutCloudSyncData(g_tableName, downloadData), E_OK); in DeleteWithPkTest()
|
H A D | distributeddb_cloud_meta_data_test.cpp | 278 EXPECT_EQ(proxyObj.PutCloudSyncData(TABLE_NAME_1, downloadData), -E_INVALID_DB); 350 EXPECT_EQ(obj.PutCloudSyncData(TABLE_NAME_1, downloadData), -E_INVALID_DB);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_cloud_kv_store.h | 65 int PutCloudSyncData(const std::string &tableName, DownloadData &downloadData) override;
|
H A D | sqlite_cloud_kv_store.cpp | 252 int SqliteCloudKvStore::PutCloudSyncData([[gnu::unused]] const std::string &tableName, DownloadData…
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/ |
H A D | storage_proxy.h | 83 int PutCloudSyncData(const std::string &tableName, DownloadData &downloadData);
|
H A D | icloud_sync_storage_interface.h | 131 virtual int PutCloudSyncData(const std::string &tableName, DownloadData &downloadData) = 0;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/ |
H A D | distributeddb_relational_cloud_syncable_storage_test.cpp | 1051 EXPECT_EQ(g_storageProxy->PutCloudSyncData(g_tableName, downloadData), E_OK); 1430 …EXPECT_EQ(g_storageProxy->PutCloudSyncData(g_tableName + CloudDbConstant::SHARED, downloadData), E… 1439 …EXPECT_EQ(g_storageProxy->PutCloudSyncData(g_tableName + CloudDbConstant::SHARED, downloadData), E… 1473 …EXPECT_EQ(g_storageProxy->PutCloudSyncData(g_tableName + CloudDbConstant::SHARED, downloadData), E… 1483 …EXPECT_EQ(g_storageProxy->PutCloudSyncData(g_tableName + CloudDbConstant::SHARED, downloadData), E…
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/ |
H A D | storage_proxy.cpp | 309 int StorageProxy::PutCloudSyncData(const std::string &tableName, DownloadData &downloadData) in PutCloudSyncData() function in DistributedDB::StorageProxy 320 return store_->PutCloudSyncData(tableName, downloadData); in PutCloudSyncData()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/ |
H A D | relational_sync_able_storage.h | 172 int PutCloudSyncData(const std::string &tableName, DownloadData &downloadData) override;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/ |
H A D | sqlite_single_ver_relational_storage_executor.h | 134 int PutCloudSyncData(const std::string &tableName, const TableSchema &tableSchema,
|
H A D | sqlite_single_ver_relational_storage_executor_extend.cpp | 610 int SQLiteSingleVerRelationalStorageExecutor::PutCloudSyncData(const std::string &tableName, in PutCloudSyncData() function in DistributedDB::SQLiteSingleVerRelationalStorageExecutor
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/ |
H A D | relational_sync_able_storage.cpp | 1270 int RelationalSyncAbleStorage::PutCloudSyncData(const std::string &tableName, DownloadData &downloa… in PutCloudSyncData() function in DistributedDB::RelationalSyncAbleStorage 1292 errCode = handle->PutCloudSyncData(tableName, tableSchema, trackerTable, downloadData); in PutCloudSyncDataInner()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/ |
H A D | cloud_syncer.cpp | 885 ret = storageProxy_->PutCloudSyncData(param.tableName, param.downloadData); in SaveData()
|