Lines Matching refs:onlineUpdater
159 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
160 if (onlineUpdater == nullptr) {
161 ENGINE_LOGI("GetNewVersionInfo onlineUpdater null");
164 return onlineUpdater->GetNewVersionInfo(info, newVersionInfo, businessError);
171 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
172 if (onlineUpdater == nullptr) {
173 ENGINE_LOGI("GetNewVersionDescription onlineUpdater null");
176 return onlineUpdater->GetNewVersionDescription(info, versionDigestInfo, descriptionOptions,
183 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
184 if (onlineUpdater == nullptr) {
185 ENGINE_LOGI("GetCurrentVersionInfo onlineUpdater null");
188 return onlineUpdater->GetCurrentVersionInfo(info, currentVersionInfo, businessError);
195 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
196 if (onlineUpdater == nullptr) {
197 ENGINE_LOGI("GetCurrentVersionDescription onlineUpdater null");
200 return onlineUpdater->GetCurrentVersionDescription(info, descriptionOptions, currentVersionDescriptionInfo,
206 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
207 if (onlineUpdater == nullptr) {
208 ENGINE_LOGI("GetTaskInfo onlineUpdater null");
211 return onlineUpdater->GetTaskInfo(info, taskInfo, businessError);
217 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
218 if (onlineUpdater == nullptr) {
219 ENGINE_LOGI("SetUpgradePolicy onlineUpdater null");
222 return onlineUpdater->SetUpgradePolicy(info, policy, businessError);
227 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
228 if (onlineUpdater == nullptr) {
229 ENGINE_LOGI("GetUpgradePolicy onlineUpdater null");
232 return onlineUpdater->GetUpgradePolicy(info, policy, businessError);
237 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
238 if (onlineUpdater == nullptr) {
239 ENGINE_LOGI("CheckNewVersion onlineUpdater null");
242 return onlineUpdater->CheckNewVersion(info, businessError, checkResult);
248 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
249 if (onlineUpdater == nullptr) {
250 ENGINE_LOGI("Download onlineUpdater null");
253 return onlineUpdater->Download(info, versionDigestInfo, downloadOptions, businessError);
276 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
277 if (onlineUpdater == nullptr) {
278 ENGINE_LOGI("Upgrade onlineUpdater null");
281 return onlineUpdater->Upgrade(info, versionDigestInfo, upgradeOptions, businessError);
287 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
288 if (onlineUpdater == nullptr) {
289 ENGINE_LOGI("ClearError onlineUpdater null");
292 return onlineUpdater->ClearError(info, versionDigestInfo, clearOptions, businessError);
297 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
298 if (onlineUpdater == nullptr) {
299 ENGINE_LOGI("TerminateUpgrade onlineUpdater null");
302 return onlineUpdater->TerminateUpgrade(info, businessError);
307 sptr<IServiceOnlineUpdater> onlineUpdater = updateImplMgr_->GetOnlineUpdater(info);
308 if (onlineUpdater == nullptr) {
309 ENGINE_LOGI("Cancel onlineUpdater null");
312 return onlineUpdater->Cancel(info, service, businessError);