Home
last modified time | relevance | path

Searched refs:CreateSyncTaskContext (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/multiver/
H A Dmulti_ver_sync_engine.cpp21 ISyncTaskContext *MultiVerSyncEngine::CreateSyncTaskContext() in CreateSyncTaskContext() function in DistributedDB::MultiVerSyncEngine
H A Dmulti_ver_sync_engine.h33 ISyncTaskContext *CreateSyncTaskContext() override;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Dmock_sync_engine.h25 MOCK_METHOD1(CreateSyncTaskContext, ISyncTaskContext *(const ISyncInterface &syncInterface));
H A Ddistributeddb_mock_sync_module_test.cpp1192 EXPECT_CALL(*enginePtr, CreateSyncTaskContext(_))
1251 EXPECT_CALL(*enginePtr, CreateSyncTaskContext(_))
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/
H A Dsingle_ver_sync_engine.h42 ISyncTaskContext *CreateSyncTaskContext(const ISyncInterface &syncInterface) override;
H A Dsingle_ver_sync_engine.cpp24 ISyncTaskContext *SingleVerSyncEngine::CreateSyncTaskContext(const ISyncInterface &syncInterface) in CreateSyncTaskContext() function in DistributedDB::SingleVerSyncEngine
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dsync_engine.h131 virtual ISyncTaskContext *CreateSyncTaskContext(const ISyncInterface &syncInterface) = 0;
H A Dsync_engine.cpp633 ISyncTaskContext *context = CreateSyncTaskContext(*storage); in GetSyncTaskContext()