Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/app_file_service/tests/mock/backup_ext/src/
H A Dext_backup_mock.cpp137 ErrCode ExtBackup::OnProcess(function<void(ErrCode, std::string)> callback) in OnProcess() function in OHOS::FileManagement::Backup::ExtBackup
139 return BExtBackup::extBackup->OnProcess(callback); in OnProcess()
/ohos5.0/foundation/filemanagement/app_file_service/tests/mock/backup_ext/include/
H A Dext_backup_mock.h54 virtual ErrCode OnProcess(std::function<void(ErrCode, std::string)> callback) = 0;
90 MOCK_METHOD(ErrCode, OnProcess, (std::function<void(ErrCode, std::string)>));
/ohos5.0/foundation/filemanagement/app_file_service/tools/backup_tool/src/
H A Dtools_op_backup.cpp192 static void OnProcess(shared_ptr<Session> ctx, const std::string bundleName, const std::string proc… in OnProcess() function
258 … .onProcess = bind(OnProcess, ctx, placeholders::_1, placeholders::_2)}); in InitPathCapFile()
H A Dtools_op_restore.cpp200 static void OnProcess(shared_ptr<Session> ctx, const std::string bundleName, const std::string proc… in OnProcess() function
266 .onProcess = bind(OnProcess, ctx, placeholders::_1, placeholders::_2)}); in InitRestoreSession()
H A Dtools_op_incremental_restore.cpp222 static void OnProcess(shared_ptr<SessionRestore> ctx, const std::string bundleName, const std::stri… in OnProcess() function
281 .onProcess = bind(OnProcess, ctx, placeholders::_1, placeholders::_2)}); in InitRestoreSession()
H A Dtools_op_incremental_backup.cpp227 static void OnProcess(shared_ptr<SessionBckup> ctx, const std::string &bundleName, const std::strin… in OnProcess() function
317 .onProcess = bind(OnProcess, ctx, placeholders::_1, placeholders::_2)}); in Init()
H A Dtools_op_restore_async.cpp173 static void OnProcess(shared_ptr<SessionAsync> ctx, const std::string bundleName, const std::string… in OnProcess() function
394 .onProcess = bind(OnProcess, ctx, placeholders::_1, placeholders::_2)}); in InitArg()
H A Dtools_op_incremental_restore_async.cpp249 static void OnProcess(shared_ptr<Session> ctx, const std::string bundleName, const std::string proc… in OnProcess() function
411 .onProcess = bind(OnProcess, ctx, placeholders::_1, placeholders::_2)}); in InitArg()
/ohos5.0/foundation/filemanagement/app_file_service/frameworks/native/backup_ext/include/
H A Dext_backup.h153 virtual ErrCode OnProcess(std::function<void(ErrCode, std::string)> callback);
H A Dext_backup_js.h138 ErrCode OnProcess(std::function<void(ErrCode, const std::string)> callback) override;
/ohos5.0/foundation/filemanagement/app_file_service/interfaces/kits/js/backup/
H A Dsession_backup_n_exporter.cpp278 static void OnProcess(weak_ptr<GeneralCallbacks> pCallbacks, const BundleName name, const std::stri… in OnProcess() function
343 .onProcess = bind(OnProcess, backupEntity->callbacks, placeholders::_1, placeholders::_2)}); in Constructor()
H A Dsession_incremental_backup_n_exporter.cpp284 static void OnProcess(weak_ptr<GeneralCallbacks> pCallbacks, const BundleName name, const std::stri… in OnProcess() function
350 .onProcess = bind(OnProcess, backupEntity->callbacks, placeholders::_1, placeholders::_2)}); in Constructor()
H A Dsession_restore_n_exporter.cpp286 static void OnProcess(weak_ptr<GeneralCallbacks> pCallbacks, const BundleName name, const std::stri… in OnProcess() function
457 … .onProcess = bind(OnProcess, restoreEntity->callbacks, placeholders::_1, placeholders::_2)}); in Constructor()
/ohos5.0/foundation/filemanagement/app_file_service/frameworks/native/backup_ext/src/
H A Dext_backup.cpp303 ErrCode ExtBackup::OnProcess(std::function<void(ErrCode, std::string)> callback) in OnProcess() function in OHOS::FileManagement::Backup::ExtBackup
H A Dext_backup_js.cpp924 ErrCode ExtBackupJs::OnProcess(std::function<void(ErrCode, const std::string)> callback) in OnProcess() function in OHOS::FileManagement::Backup::ExtBackupJs
H A Dsub_ext_extension.cpp665 ErrCode ret = extenionPtr->extension_->OnProcess(callBack); in SyncCallJsOnProcessTask()