Home
last modified time | relevance | path

Searched refs:DataHandler (Results 1 – 10 of 10) sorted by relevance

/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/data_sync/
Ddata_handler.cpp24 DataHandler::DataHandler(int32_t userId, const string &bundleName, const std::string &table) in DataHandler() function in OHOS::FileManagement::CloudSync::DataHandler
35 void DataHandler::GetNextCursor(DriveKit::DKQueryCursor &cursor) in GetNextCursor()
44 void DataHandler::SetTempStartCursor(const DriveKit::DKQueryCursor &cursor) in SetTempStartCursor()
50 void DataHandler::GetTempStartCursor(DriveKit::DKQueryCursor &cursor) in GetTempStartCursor()
55 void DataHandler::SetTempNextCursor(const DriveKit::DKQueryCursor &cursor, bool isFinish) in SetTempNextCursor()
69 int32_t DataHandler::GetBatchNo() in GetBatchNo()
74 bool DataHandler::IsPullRecords() in IsPullRecords()
79 void DataHandler::ClearCursor() in ClearCursor()
99 void DataHandler::FinishPull(const int32_t batchNo) in FinishPull()
142 void DataHandler::SetRecordSize(const int32_t recordSize) in SetRecordSize()
[all …]
Ddata_syncer.cpp177 int32_t DataSyncer::Pull(shared_ptr<DataHandler> handler) in Pull()
410 int32_t DataSyncer::DownloadInner(std::shared_ptr<DataHandler> handler, in DownloadInner()
617 int32_t DataSyncer::Push(shared_ptr<DataHandler> handler) in Push()
672 int32_t DataSyncer::CleanInner(std::shared_ptr<DataHandler> handler, const int action) in CleanInner()
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/mock/
Ddata_syncer_mock.cpp98 int32_t DataSyncer::Pull(shared_ptr<DataHandler> handler) in Pull()
115 int32_t DataSyncer::CleanInner(std::shared_ptr<DataHandler> handler, const int action) in CleanInner()
140 int32_t DataSyncer::DownloadInner(std::shared_ptr<DataHandler> handler, in DownloadInner()
164 int32_t DataSyncer::Push(shared_ptr<DataHandler> handler) in Push()
/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/data_sync/
Dtask.h40 TaskContext(std::shared_ptr<DataHandler> handler) : handler_(handler) {} in TaskContext()
42 std::shared_ptr<DataHandler> GetHandler() in GetHandler()
48 std::shared_ptr<DataHandler> handler_;
53 DownloadTaskContext(std::shared_ptr<DataHandler> handler, int32_t batchNo) in DownloadTaskContext()
Ddata_syncer.h77 int32_t Pull(std::shared_ptr<DataHandler> handler);
80 int32_t Push(std::shared_ptr<DataHandler> handler);
83 int32_t CleanInner(std::shared_ptr<DataHandler> handler, const int action);
95 int32_t DownloadInner(std::shared_ptr<DataHandler> handler,
Drdb_data_handler.h29 class RdbDataHandler : public DataHandler {
34 : DataHandler(userId, bundleName, table), in RdbDataHandler()
Ddata_handler.h38 class DataHandler {
40 DataHandler(int32_t userId, const std::string &bundleName, const std::string &table);
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/data_sync/
Ddata_handler_mock.h27 class DataHandlerMock final : public DataHandler {
30 : DataHandler(userId, bundleName, table) in DataHandlerMock()
/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/ipc/
Dcloud_download_callback_manager.h42 std::shared_ptr<DataHandler> handler,
/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/ipc/
Dcloud_download_callback_manager.cpp64 std::shared_ptr<DataHandler> handler, in OnDownloadedResult()