Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_storage_executor_extend.cpp295 const std::vector<std::string> &tableNameList, const RelationalSchemaObject &localSchema, in DoCleanInner() argument
304 errCode = DoCleanLogs(tableNameList, localSchema); in DoCleanInner()
309 notifyTableList = tableNameList; in DoCleanInner()
311 errCode = DoCleanLogAndData(tableNameList, localSchema, assets); in DoCleanInner()
316 notifyTableList = tableNameList; in DoCleanInner()
318 errCode = DoCleanShareTableDataAndLog(tableNameList); in DoCleanInner()
332 …QLiteSingleVerRelationalStorageExecutor::DoCleanLogs(const std::vector<std::string> &tableNameList, in DoCleanLogs() argument
337 for (const auto &tableName: tableNameList) { in DoCleanLogs()
451 …ingleVerRelationalStorageExecutor::DoCleanLogAndData(const std::vector<std::string> &tableNameList, in DoCleanLogAndData() argument
455 for (size_t i = 0; i < tableNameList.size(); i++) { in DoCleanLogAndData()
[all …]
H A Dsqlite_single_ver_relational_storage_executor.h138 int DoCleanInner(ClearMode mode, const std::vector<std::string> &tableNameList,
215 …int DoCleanLogs(const std::vector<std::string> &tableNameList, const RelationalSchemaObject &local…
217 int DoCleanLogAndData(const std::vector<std::string> &tableNameList,
369 int DoCleanShareTableDataAndLog(const std::vector<std::string> &tableNameList);
H A Dsqlite_relational_store.cpp534 std::vector<std::string> tableNameList = GetAllDistributedTableName(); in RemoveDeviceData() local
535 if (tableNameList.empty()) { in RemoveDeviceData()
539 int errCode = EraseAllDeviceWatermark(tableNameList); in RemoveDeviceData()
550 for (const auto &table : tableNameList) { in RemoveDeviceData()
815 int SQLiteRelationalStore::EraseAllDeviceWatermark(const std::vector<std::string> &tableNameList) in EraseAllDeviceWatermark() argument
822 for (const auto &tableName : tableNameList) { in EraseAllDeviceWatermark()
H A Dsqlite_relational_store.h135 int EraseAllDeviceWatermark(const std::vector<std::string> &tableNameList);
H A Dsqlite_single_ver_relational_storage_extend_executor.cpp738 …lationalStorageExecutor::DoCleanShareTableDataAndLog(const std::vector<std::string> &tableNameList) in DoCleanShareTableDataAndLog() argument
742 for (const auto &tableName: tableNameList) { in DoCleanShareTableDataAndLog()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Dmock_icloud_sync_storage_interface.h45 MOCK_METHOD4(CleanCloudData, int(ClearMode mode, const std::vector<std::string> &tableNameList,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Dstorage_proxy.h85 int CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList,
H A Dicloud_sync_storage_interface.h133 virtual int CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList, in CleanCloudData() argument
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
H A Dcloud_syncer.h58 int CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList,
61 int CleanWaterMarkInMemory(const std::set<std::string> &tableNameList);
H A Dcloud_syncer.cpp1655 int CloudSyncer::CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList, in CleanCloudData() argument
1660 for (const auto &tableName: tableNameList) { in CleanCloudData()
1676 errCode = storageProxy_->CleanCloudData(mode, tableNameList, localSchema, assets); in CleanCloudData()
1696 int CloudSyncer::CleanWaterMarkInMemory(const std::set<std::string> &tableNameList) in CleanWaterMarkInMemory() argument
1699 for (const auto &tableName: tableNameList) { in CleanWaterMarkInMemory()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dstorage_proxy.cpp323 int StorageProxy::CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList, in CleanCloudData() argument
334 return store_->CleanCloudData(mode, tableNameList, localSchema, assets); in CleanCloudData()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
H A Drelational_sync_able_storage.h174 int CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
H A Drelational_sync_able_storage.cpp1304 …ionalSyncAbleStorage::CleanCloudData(ClearMode mode, const std::vector<std::string> &tableNameList, in CleanCloudData() argument
1313 …int errCode = transactionHandle_->DoCleanInner(mode, tableNameList, localSchema, assets, notifyTab… in CleanCloudData()