Home
last modified time | relevance | path

Searched refs:IsSharedTable (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/cloud/
H A Dschema_mgr.h36 bool IsSharedTable(const std::string &tableName);
H A Dcloud_storage_utils.h111 static bool IsSharedTable(const TableSchema &tableSchema);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/cloud/
H A Dschema_mgr.cpp218 bool SchemaMgr::IsSharedTable(const std::string &tableName) in IsSharedTable() function in DistributedDB::SchemaMgr
244 if (item.sharedTableName.empty() || CloudStorageUtils::IsSharedTable(item)) { in GetSharedTableOriginNames()
H A Dcloud_storage_utils.cpp745 bool CloudStorageUtils::IsSharedTable(const TableSchema &tableSchema) in IsSharedTable() function in DistributedDB::CloudStorageUtils
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Dmock_icloud_sync_storage_interface.h52 MOCK_METHOD1(IsSharedTable, bool(const std::string &));
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dstorage_proxy.cpp514 int StorageProxy::IsSharedTable(const std::string &tableName, bool &IsSharedTable) in IsSharedTable() function in DistributedDB::StorageProxy
520 IsSharedTable = store_->IsSharedTable(tableName); in IsSharedTable()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_cloud_kv_store.h80 bool IsSharedTable(const std::string &tableName) override;
H A Dsqlite_cloud_kv_store.cpp387 bool SqliteCloudKvStore::IsSharedTable(const std::string &tableName) in IsSharedTable() function in DistributedDB::SqliteCloudKvStore
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Dstorage_proxy.h116 int IsSharedTable(const std::string &tableName, bool &isSharedTable);
H A Dicloud_sync_storage_interface.h171 virtual bool IsSharedTable(const std::string &tableName) = 0;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
H A Dcloud_syncer_extend.cpp164 int ret = storageProxy_->IsSharedTable(uploadData.tableName, isSharedTable); in BatchInsert()
209 int ret = storageProxy_->IsSharedTable(uploadData.tableName, isSharedTable); in BatchUpdate()
243 int errCode = storageProxy_->IsSharedTable(info.tableName, isSharedTable); in DownloadAssetsOneByOne()
541 errCode = storageProxy_->IsSharedTable(table, isShared); in PrepareAndDownload()
H A Dcloud_syncer.cpp1043 int errCode = storageProxy_->IsSharedTable(param.tableName, isSharedTable); in DoDownloadAssets()
1968 int errorCode = storageProxy_->IsSharedTable(info.tableName, isSharedTable); in DownloadOneAssetRecord()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
H A Drelational_sync_able_storage.cpp1137 cloudDataResult.isShared = IsSharedTable(cloudDataResult.tableName); in GetCloudDataNext()
1589 bool RelationalSyncAbleStorage::IsSharedTable(const std::string &tableName) in IsSharedTable() function in DistributedDB::RelationalSyncAbleStorage
1592 return schemaMgr_.IsSharedTable(tableName); in IsSharedTable()
1640 if (!IsSharedTable(tableName)) { in GetTableReference()
1669 if (CloudStorageUtils::IsSharedTable(table)) { in GetSourceTableName()
1695 if (CloudStorageUtils::IsSharedTable(table)) { in GetSharedTargetTableName()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
H A Drelational_sync_able_storage.h197 bool IsSharedTable(const std::string &tableName) override;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/cloud/
H A Ddistributeddb_cloud_meta_data_test.cpp282 EXPECT_EQ(proxyObj.IsSharedTable(TABLE_NAME_1, isSharedTable), -E_INVALID_DB);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_storage_extend_executor.cpp1487 if (CloudStorageUtils::IsSharedTable(tableSchema)) { in OnlyUpdateAssetId()