Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_relational_store_connection.h38 int32_t GetCloudSyncTaskCount() override;
H A Dsqlite_relational_store_connection.cpp174 int32_t SQLiteRelationalStoreConnection::GetCloudSyncTaskCount() in GetCloudSyncTaskCount() function in DistributedDB::SQLiteRelationalStoreConnection
181 int32_t count = store->GetCloudSyncTaskCount(); in GetCloudSyncTaskCount()
H A Dsqlite_relational_store.h51 int32_t GetCloudSyncTaskCount();
H A Dsqlite_relational_store.cpp480 int32_t SQLiteRelationalStore::GetCloudSyncTaskCount() in GetCloudSyncTaskCount() function in DistributedDB::SQLiteRelationalStore
486 return cloudSyncer_->GetCloudSyncTaskCount(); in GetCloudSyncTaskCount()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
H A Drelational_store_delegate_impl.h35 int32_t GetCloudSyncTaskCount() override;
H A Drelational_store_delegate_impl.cpp66 int32_t RelationalStoreDelegateImpl::GetCloudSyncTaskCount() in GetCloudSyncTaskCount() function in DistributedDB::RelationalStoreDelegateImpl
72 int32_t count = conn_->GetCloudSyncTaskCount(); in GetCloudSyncTaskCount()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Drelational_store_connection.h53 virtual int32_t GetCloudSyncTaskCount() = 0;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/relational/
H A Drelational_store_delegate.h53 DB_API virtual int32_t GetCloudSyncTaskCount() = 0;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/relationalstoredelegate_fuzzer/
H A Drelationalstoredelegate_fuzzer.cpp153 g_delegate->GetCloudSyncTaskCount(); in CombineTest()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dsync_able_kvdb.cpp646 taskCount += cloudSyncer->GetCloudSyncTaskCount(); in GetTaskCount()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
H A Dcloud_syncer.h63 int32_t GetCloudSyncTaskCount();
H A Dcloud_syncer.cpp1649 int32_t CloudSyncer::GetCloudSyncTaskCount() in GetCloudSyncTaskCount() function in DistributedDB::CloudSyncer
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Drdb_general_store_test.cpp94 int32_t GetCloudSyncTaskCount() override in GetCloudSyncTaskCount() function in OHOS::Test::DistributedRDBTest::MockRelationalStoreDelegate
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_cloud_interfaces_relational_remove_device_data_test.cpp821 EXPECT_EQ(g_delegate->GetCloudSyncTaskCount(), 2); // 2 is task count
H A Ddistributeddb_cloud_interfaces_relational_ext_test.cpp1267 EXPECT_EQ(delegate->GetCloudSyncTaskCount(), -1); // -1 is error count
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_general_store.cpp243 if (!isForce && delegate_->GetCloudSyncTaskCount() > 0) { in Close()