Home
last modified time | relevance | path

Searched refs:resumeDownloadOptions (Results 1 – 17 of 17) sorted by relevance

/base/update/updateservice/interfaces/inner_api/include/
Dmessage_parcel_helper.h68 …32_t ReadResumeDownloadOptions(MessageParcel &reply, ResumeDownloadOptions &resumeDownloadOptions);
69 …riteResumeDownloadOptions(MessageParcel &data, const ResumeDownloadOptions &resumeDownloadOptions);
Diservice_online_updater.h39 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) = 0;
Dupdate_service_kits.h51 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) = 0;
Dupdate_service_kits_impl.h49 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) final;
/base/update/updateservice/interfaces/kits/js/declaration/
D@ohos.update.d.ts300 resumeDownloadOptions: ResumeDownloadOptions,
319 …resumeDownload(versionDigestInfo: VersionDigestInfo, resumeDownloadOptions: ResumeDownloadOptions)…
/base/update/updateservice/services/engine/src/
Dmessage_parcel_helper.cpp361 MessageParcel &reply, ResumeDownloadOptions &resumeDownloadOptions) in ReadResumeDownloadOptions() argument
363 resumeDownloadOptions.allowNetwork = static_cast<NetType>(reply.ReadUint32()); in ReadResumeDownloadOptions()
368 MessageParcel &data, const ResumeDownloadOptions &resumeDownloadOptions) in WriteResumeDownloadOptions() argument
370 data.WriteUint32(static_cast<uint32_t>(resumeDownloadOptions.allowNetwork)); in WriteResumeDownloadOptions()
Dupdate_service_impl_firmware.cpp83 const VersionDigestInfo &versionDigestInfo, const ResumeDownloadOptions &resumeDownloadOptions, in ResumeDownload() argument
86 …FIRMWARE_LOGI("ResumeDownload allowNetwork:%{public}d", CAST_INT(resumeDownloadOptions.allowNetwor… in ResumeDownload()
Dupdate_service_stub.cpp204 ResumeDownloadOptions resumeDownloadOptions; in ResumeDownloadStub() local
208 MessageParcelHelper::ReadResumeDownloadOptions(data, resumeDownloadOptions); in ResumeDownloadStub()
210 …int32_t ret = service->ResumeDownload(upgradeInfo, versionDigestInfo, resumeDownloadOptions, busin… in ResumeDownloadStub()
Dupdate_service.cpp261 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) in ResumeDownload() argument
263 …ENGINE_LOGI("ResumeDownload allowNetwork:%{public}d", CAST_INT(resumeDownloadOptions.allowNetwork)… in ResumeDownload()
/base/update/updateservice/services/engine/include/
Dupdate_service_impl_firmware.h43 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) final;
Dupdate_service_proxy.h42 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) override;
Dupdate_service.h53 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) override;
/base/update/updateservice/interfaces/inner_api/engine/
Dupdate_service_kits_impl.cpp179 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) in ResumeDownload() argument
184 …return updateService->ResumeDownload(info, versionDigestInfo, resumeDownloadOptions, businessError… in ResumeDownload()
Dupdate_service_proxy.cpp154 const ResumeDownloadOptions &resumeDownloadOptions, BusinessError &businessError) in ResumeDownload() argument
164 MessageParcelHelper::WriteResumeDownloadOptions(data, resumeDownloadOptions); in ResumeDownload()
/base/update/update_app/common/src/main/ets/manager/
DUpdateManager.ts342 let resumeDownloadOptions: update.ResumeDownloadOptions = {
345 this.otaUpdater?.resumeDownload(versionDigestInfo, resumeDownloadOptions).then(() => {
/base/update/updateservice/frameworks/js/napi/base/include/
Dclient_helper.h214 ResumeDownloadOptions &resumeDownloadOptions);
/base/update/updateservice/frameworks/js/napi/base/src/
Dclient_helper.cpp478 ResumeDownloadOptions &resumeDownloadOptions) in GetOptionsFromArg() argument
480 return GetNetType(env, arg, resumeDownloadOptions.allowNetwork); in GetOptionsFromArg()