Lines Matching refs:times
199 int32_t times = 0;
200 RegisterSubscriber(times);
207 void WallpaperService::RegisterSubscriber(int32_t times)
210 times++;
213 if (!subRes && times <= MAX_RETRY_TIMES) {
215 auto callback = [this, times]() { RegisterSubscriber(times); };
310 void WallpaperService::InitQueryUserId(int32_t times)
312 times--;
314 if (!ret && times > 0) {
316 auto callback = [this, times]() { InitQueryUserId(times); };
322 void WallpaperService::StartExtensionAbility(int32_t times)
324 times--;
326 if (!ret && times > 0 && serviceHandler_ != nullptr) {
327 HILOG_ERROR("StartExtensionAbilty failed, remainder of the times: %{public}d", times);
328 auto callback = [this, times]() { StartExtensionAbility(times); };