Home
last modified time | relevance | path

Searched refs:BatchUpdate (Results 1 - 25 of 46) sorted by relevance

12

/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/cloud/
H A Dcloud_db.cpp28 int32_t CloudDB::BatchUpdate(const std::string &table, VBuckets &&values, VBuckets &extends) in BatchUpdate() function in OHOS::DistributedData::CloudDB
30 return BatchUpdate(table, std::move(values), static_cast<const VBuckets &>(extends)); in BatchUpdate()
33 int32_t CloudDB::BatchUpdate(const std::string &table, VBuckets &&values, const VBuckets &extends) in BatchUpdate() function in OHOS::DistributedData::CloudDB
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/extension/
H A Dcloud_db_impl.h36 int32_t BatchUpdate(const std::string &table, DBVBuckets &&values, DBVBuckets &extends) override;
37 int32_t BatchUpdate(const std::string &table, DBVBuckets &&values, const DBVBuckets &extends) override;
H A Dcloud_db_impl.cpp74 int32_t CloudDbImpl::BatchUpdate(const std::string &table, DBVBuckets &&values, DBVBuckets &extends) in BatchUpdate() function in OHOS::CloudData::CloudDbImpl
93 int32_t CloudDbImpl::BatchUpdate(const std::string &table, DBVBuckets &&values, const DBVBuckets &extends) in BatchUpdate() function in OHOS::CloudData::CloudDbImpl
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/cloud/
H A Dcloud_db.h37 virtual int32_t BatchUpdate(const std::string &table, VBuckets &&values, VBuckets &extends);
39 virtual int32_t BatchUpdate(const std::string &table, VBuckets &&values, const VBuckets &extends);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Dmock_iclouddb.h26 MOCK_METHOD3(BatchUpdate, DBStatus(const std::string &, std::vector<VBucket> &&,
H A Dvirtual_cloud_db.h37 DBStatus BatchUpdate(const std::string &tableName, std::vector<VBucket> &&record,
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/controller/provider/src/
H A Dext_special_controller.cpp82 int ExtSpecialController::BatchUpdate(const UpdateOperations &operations, in BatchUpdate() function in OHOS::DataShare::ExtSpecialController
95 return proxy->BatchUpdate(operations, results); in BatchUpdate()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/cloud/
H A Dicloud_db.h35 virtual DBStatus BatchUpdate(const std::string &tableName, std::vector<VBucket> &&record,
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/controller/provider/include/
H A Dext_special_controller.h36 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results);
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_urisensitive_operations.cpp223 static void BatchUpdate(MediaLibraryCommand &cmd, std::vector<string> inColumn, int32_t tableType, in BatchUpdate() function
324 BatchUpdate(cmd, photosValues, PHOTOSTYPE, values); in GrantUriSensitive()
327 BatchUpdate(cmd, audiosValues, AUDIOSTYPE, values); in GrantUriSensitive()
H A Dmedialibrary_uripermission_operations.cpp319 static void BatchUpdate(MediaLibraryCommand &cmd, std::vector<string> inColumn, int32_t tableType, in BatchUpdate() function
437 BatchUpdate(cmd, photosValues, PHOTOSTYPE, values); in GrantUriPermission()
440 BatchUpdate(cmd, audiosValues, AUDIOSTYPE, values); in GrantUriPermission()
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/include/
H A Ddatashare_proxy.h45 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
H A Ddatashare_helper_impl.h48 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
/foundation/distributeddatamgr/data_share/frameworks/native/common/include/
H A Didatashare.h49 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) = 0;
/foundation/distributeddatamgr/data_share/frameworks/native/provider/src/
H A Ddatashare_ext_ability.cpp97 int DataShareExtAbility::BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) in BatchUpdate() function in OHOS::DataShare::DataShareExtAbility
H A Ddatashare_stub.cpp214 int ret = BatchUpdate(updateOperations, results); in CmdBatchUpdate()
216 LOG_ERROR("BatchUpdate inner error, ret is %{public}d.", ret); in CmdBatchUpdate()
525 int DataShareStub::BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) in BatchUpdate() function in OHOS::DataShare::DataShareStub
/foundation/distributeddatamgr/data_share/frameworks/native/provider/include/
H A Ddatashare_stub_impl.h49 int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
H A Ddatashare_stub.h58 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
H A Ddatashare_ext_ability.h146 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results);
H A Djs_datashare_ext_ability.h149 virtual int BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) override;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_cloud.h45 DBStatus BatchUpdate(const std::string &tableName, std::vector<DBVBucket> &&record,
H A Drdb_cloud.cpp50 DBStatus RdbCloud::BatchUpdate( in BatchUpdate() function in OHOS::DistributedRdb::RdbCloud
59 auto error = cloudDB_->BatchUpdate(tableName, std::move(records), extends); in BatchUpdate()
/foundation/distributeddatamgr/data_share/frameworks/native/consumer/src/
H A Ddatashare_helper_impl.cpp127 int DataShareHelperImpl::BatchUpdate(const UpdateOperations &operations, std::vector<BatchUpdateResult> &results) in BatchUpdate() function in OHOS::DataShare::DataShareHelperImpl
134 return extSpCtl->BatchUpdate(operations, results); in BatchUpdate()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Drdb_cloud_test.cpp43 * @tc.desc: RdbCloud BatchInsert BatchUpdate BatchDelete test.
57 result = rdbCloud.BatchUpdate(tableName, std::move(g_DBVBucket), g_DBVBucket); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
H A Dcloud_db_proxy.h45 int BatchUpdate(const std::string &tableName, std::vector<VBucket> &record, std::vector<VBucket> &extend,

Completed in 11 milliseconds

12