/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/ |
H A D | mock_iclouddb.h | 28 MOCK_METHOD2(BatchDelete, DBStatus(const std::string &, std::vector<VBucket> &));
|
H A D | virtual_cloud_db.h | 40 DBStatus BatchDelete(const std::string &tableName, std::vector<VBucket> &extend) override;
|
H A D | distributeddb_cloud_syncer_upload_test.cpp | 133 EXPECT_CALL(idb, BatchDelete(_, _)).WillRepeatedly(Return(OK)); in PrepareCloudDBMockCheck() 631 EXPECT_CALL(*idb, BatchDelete(_, _)).WillRepeatedly(Return(OK)); in HWTEST_F() 873 EXPECT_CALL(*idb2, BatchDelete(_, _)).WillOnce([&uploadData2](const std::string &, in HWTEST_F() 917 EXPECT_CALL(*idb, BatchDelete(_, _)).WillRepeatedly([&uploadData](const std::string &, in SetFuncs015() 957 // BatchInsert failed, BatchUpdate ok, BatchDelete ok in HWTEST_F()
|
H A D | distributeddb_cloud_db_proxy_test.cpp | 842 ret = proxy.BatchDelete(tableName, record, record, info); in HWTEST_F()
|
H A D | virtual_cloud_db.cpp | 167 DBStatus VirtualCloudDb::BatchDelete(const std::string &tableName, std::vector<VBucket> &extend) in BatchDelete() function in DistributedDB::VirtualCloudDb
|
H A D | distributeddb_cloud_syncer_lock_test.cpp | 298 ASSERT_EQ(g_virtualCloudDb->BatchDelete(tableName, extend), DBStatus::OK); in DeleteCloudDBData()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/extension/ |
H A D | cloud_db_impl.h | 38 int32_t BatchDelete(const std::string &table, DBVBuckets &extends) override;
|
H A D | cloud_db_impl.cpp | 109 int32_t CloudDbImpl::BatchDelete(const std::string &table, DBVBuckets &extends) in BatchDelete() function in OHOS::CloudData::CloudDbImpl
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/cloud/ |
H A D | icloud_db.h | 37 virtual DBStatus BatchDelete(const std::string &tableName, std::vector<VBucket> &extend) = 0;
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/cloud/ |
H A D | cloud_db.cpp | 38 int32_t CloudDB::BatchDelete(const std::string &table, VBuckets &extends) in BatchDelete() function in OHOS::DistributedData::CloudDB
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_cloud.h | 47 DBStatus BatchDelete(const std::string &tableName, std::vector<DBVBucket> &extend) override;
|
H A D | rdb_cloud.cpp | 66 DBStatus RdbCloud::BatchDelete(const std::string &tableName, std::vector<DBVBucket> &extend) in BatchDelete() function in OHOS::DistributedRdb::RdbCloud 69 auto error = cloudDB_->BatchDelete(tableName, extends); in BatchDelete()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/cloud/ |
H A D | cloud_db.h | 41 virtual int32_t BatchDelete(const std::string &table, VBuckets &extends);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | rdb_cloud_test.cpp | 43 * @tc.desc: RdbCloud BatchInsert BatchUpdate BatchDelete test.
59 result = rdbCloud.BatchDelete(tableName, g_DBVBucket);
in HWTEST_F()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/ |
H A D | cloud_db_proxy.h | 48 int BatchDelete(const std::string &tableName, std::vector<VBucket> &record, std::vector<VBucket> &extend,
|
H A D | cloud_db_proxy.cpp | 129 int CloudDBProxy::BatchDelete(const std::string &tableName, std::vector<VBucket> &record, std::vector<VBucket> &extend, in BatchDelete() function in DistributedDB::CloudDBProxy 355 status = cloudDb->BatchDelete(context->GetTableName(), extend); in DMLActionTask()
|
H A D | cloud_syncer.h | 359 int BatchDelete(Info &deleteInfo, CloudSyncData &uploadData, InnerProcessInfo &innerProcessInfo);
|
H A D | cloud_syncer_extend.cpp | 598 int CloudSyncer::BatchDelete(Info &deleteInfo, CloudSyncData &uploadData, InnerProcessInfo &innerProcessInfo) in BatchDelete() function in DistributedDB::CloudSyncer 600 int errCode = cloudDB_.BatchDelete(uploadData.tableName, uploadData.delData.record, in BatchDelete()
|
H A D | cloud_syncer.cpp | 1200 errCode = BatchDelete(deleteInfo, uploadData, innerProcessInfo); in SaveUploadData()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/test/ |
H A D | cloud_test.cpp | 473 result1 = cloudDB.BatchDelete(table, values); in HWTEST_F()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | distributeddb_cloud_interfaces_set_cloud_schema_test.cpp | 415 ASSERT_EQ(g_virtualCloudDb->BatchDelete(isShare ? g_sharedTableName1 : g_tableName2, extend), DBStatus::OK); in DeleteCloudTableRecord()
|