Home
last modified time | relevance | path

Searched refs:pauseDownloadOptions (Results 1 – 15 of 15) sorted by relevance

/base/update/updateservice/interfaces/kits/js/declaration/
D@ohos.update.d.ts140 …pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseDownloadOptions, ca…
141 …pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseDownloadOptions): P…
/base/update/updateservice/services/engine/include/
Dupdate_service_proxy.h38 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) override;
Dupdate_service.h51 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) override;
/base/update/updateservice/interfaces/inner_api/include/
Dupdate_service_kits.h48 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) = 0;
Diupdate_service.h64 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) = 0;
Dupdate_service_kits_impl.h43 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) final;
Dupdate_helper.h667 …int32_t ReadPauseDownloadOptions(MessageParcel &reply, PauseDownloadOptions &pauseDownloadOptions);
668 …t WritePauseDownloadOptions(MessageParcel &data, const PauseDownloadOptions &pauseDownloadOptions);
/base/update/updateservice/interfaces/inner_api/engine/
Dupdate_service_kits_impl.cpp167 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) in PauseDownload() argument
172 … return updateService->PauseDownload(info, versionDigestInfo, pauseDownloadOptions, businessError); in PauseDownload()
Dupdate_service_proxy.cpp124 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) in PauseDownload() argument
134 UpdateHelper::WritePauseDownloadOptions(data, pauseDownloadOptions); in PauseDownload()
/base/update/updateservice/services/engine/src/
Dupdate_helper.cpp347 …eHelper::ReadPauseDownloadOptions(MessageParcel &reply, PauseDownloadOptions &pauseDownloadOptions) in ReadPauseDownloadOptions() argument
349 pauseDownloadOptions.isAllowAutoResume = reply.ReadBool(); in ReadPauseDownloadOptions()
353 …r::WritePauseDownloadOptions(MessageParcel &data, const PauseDownloadOptions &pauseDownloadOptions) in WritePauseDownloadOptions() argument
355 data.WriteBool(pauseDownloadOptions.isAllowAutoResume); in WritePauseDownloadOptions()
Dupdate_service_stub.cpp150 PauseDownloadOptions pauseDownloadOptions; in PauseDownloadStub() local
154 UpdateHelper::ReadPauseDownloadOptions(data, pauseDownloadOptions); in PauseDownloadStub()
156 …int32_t ret = service->PauseDownload(upgradeInfo, versionDigestInfo, pauseDownloadOptions, busines… in PauseDownloadStub()
Dupdate_service.cpp420 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) in PauseDownload() argument
424 pauseDownloadOptions.isAllowAutoResume); in PauseDownload()
/base/update/update_app/entry/src/main/js/default/pages/index/
Dindex.js58 let pauseDownloadOptions = { variable
347 page.data.updater.pauseDownload(versionDigestInfo, pauseDownloadOptions);
/base/update/updateservice/frameworks/js/napi/base/include/
Dclient_helper.h209 PauseDownloadOptions &pauseDownloadOptions);
/base/update/updateservice/frameworks/js/napi/base/src/
Dclient_helper.cpp488 PauseDownloadOptions &pauseDownloadOptions) in GetOptionsFromArg() argument
490 NapiUtil::GetBool(env, arg, "isAllowAutoResume", pauseDownloadOptions.isAllowAutoResume); in GetOptionsFromArg()