Home
last modified time | relevance | path

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

/base/update/updateservice/interfaces/inner_api/include/
Dmessage_parcel_helper.h65 …int32_t ReadPauseDownloadOptions(MessageParcel &reply, PauseDownloadOptions &pauseDownloadOptions);
66 …t WritePauseDownloadOptions(MessageParcel &data, const PauseDownloadOptions &pauseDownloadOptions);
Diservice_online_updater.h36 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) = 0;
Dupdate_service_kits.h48 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) = 0;
Dupdate_service_kits_impl.h46 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) final;
/base/update/updateservice/interfaces/kits/js/declaration/
D@ohos.update.d.ts339 pauseDownloadOptions: PauseDownloadOptions,
358 …pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseDownloadOptions): P…
/base/update/updateservice/services/engine/src/
Dmessage_parcel_helper.cpp347 …lHelper::ReadPauseDownloadOptions(MessageParcel &reply, PauseDownloadOptions &pauseDownloadOptions) in ReadPauseDownloadOptions() argument
349 pauseDownloadOptions.isAllowAutoResume = reply.ReadBool(); in ReadPauseDownloadOptions()
354 MessageParcel &data, const PauseDownloadOptions &pauseDownloadOptions) in WritePauseDownloadOptions() argument
356 data.WriteBool(pauseDownloadOptions.isAllowAutoResume); in WritePauseDownloadOptions()
Dupdate_service_impl_firmware.cpp73 const VersionDigestInfo &versionDigestInfo, const PauseDownloadOptions &pauseDownloadOptions, in PauseDownload() argument
77 StringUtils::GetBoolStr(pauseDownloadOptions.isAllowAutoResume).c_str()); in PauseDownload()
Dupdate_service_stub.cpp186 PauseDownloadOptions pauseDownloadOptions; in PauseDownloadStub() local
190 MessageParcelHelper::ReadPauseDownloadOptions(data, pauseDownloadOptions); in PauseDownloadStub()
192 …int32_t ret = service->PauseDownload(upgradeInfo, versionDigestInfo, pauseDownloadOptions, busines… in PauseDownloadStub()
Dupdate_service.cpp252 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) in PauseDownload() argument
/base/update/updateservice/services/engine/include/
Dupdate_service_impl_firmware.h40 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) final;
Dupdate_service_proxy.h39 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) override;
Dupdate_service.h50 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) override;
/base/update/updateservice/interfaces/inner_api/engine/
Dupdate_service_kits_impl.cpp170 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) in PauseDownload() argument
175 … return updateService->PauseDownload(info, versionDigestInfo, pauseDownloadOptions, businessError); in PauseDownload()
Dupdate_service_proxy.cpp131 const PauseDownloadOptions &pauseDownloadOptions, BusinessError &businessError) in PauseDownload() argument
141 MessageParcelHelper::WritePauseDownloadOptions(data, pauseDownloadOptions); in PauseDownload()
/base/update/updateservice/frameworks/js/napi/base/include/
Dclient_helper.h212 PauseDownloadOptions &pauseDownloadOptions);
/base/update/updateservice/frameworks/js/napi/base/src/
Dclient_helper.cpp471 PauseDownloadOptions &pauseDownloadOptions) in GetOptionsFromArg() argument
473 NapiUtil::GetBool(env, arg, "isAllowAutoResume", pauseDownloadOptions.isAllowAutoResume); in GetOptionsFromArg()