Home
last modified time | relevance | path

Searched refs:maxId (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/report/
H A Dexternal_files_count_statistic.cpp68 int32_t maxId = BackupDatabaseUtils::QueryInt(galleryRdb_, QUERY_MAX_ID_ALL, CUSTOM_MAX_ID); in GetGalleryNotSyncMediaStatInfo() local
69 auto mediaTypeCountMap = this->QueryGalleryNotSyncMedia(maxId); in GetGalleryNotSyncMediaStatInfo()
108 …ed_map<int32_t, int32_t> ExternalFilesCountStatistic::QueryGalleryNotSyncMedia(const int32_t maxId) in QueryGalleryNotSyncMedia() argument
111 COMPARE_ID + std::to_string(maxId) + " AND " + QUERY_NOT_SYNC + GROUP_BY_MEIDA_TYPE; in QueryGalleryNotSyncMedia()
/ohos5.0/base/security/device_auth/services/protocol/src/pake_protocol/pake_v2_protocol/
H A Dpake_v2_protocol_common.c304 Uint8Buff *maxId = NULL; in ComputeSid() local
308 maxId = &sidSelf; in ComputeSid()
311 maxId = &sidPeer; in ComputeSid()
315 if (memcpy_s(sid->val, sid->length, maxId->val, maxId->length) != EOK) { in ComputeSid()
320 …if (memcpy_s(sid->val + maxId->length, sid->length - maxId->length, minId->val, minId->length) != … in ComputeSid()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/
H A Dupgrade_restore.cpp435 int32_t maxId = BackupDatabaseUtils::QueryInt(galleryRdb_, isCamera ? in RestoreFromExternal() local
437 maxId = (maxId_ == -1) ? maxId : maxId_; in RestoreFromExternal()
439 int32_t totalNumber = QueryNotSyncTotalNumber(maxId, isCamera); in RestoreFromExternal()
440 MEDIA_INFO_LOG("totalNumber = %{public}d, maxId = %{public}d", totalNumber, maxId); in RestoreFromExternal()
446 ffrt::submit([this, offset, maxId, isCamera, type]() { in RestoreFromExternal()
447 RestoreExternalBatch(offset, maxId, isCamera, type); in RestoreFromExternal()
454 RestoreExternalBatch(externalFailedOffsets[offset], maxId, isCamera, type); in RestoreFromExternal()
458 void UpgradeRestore::RestoreExternalBatch(int32_t offset, int32_t maxId, bool isCamera, int32_t typ… in RestoreExternalBatch() argument
461 std::vector<FileInfo> infos = QueryFileInfosFromExternal(offset, maxId, isCamera); in RestoreExternalBatch()
467 int32_t UpgradeRestore::QueryNotSyncTotalNumber(int32_t maxId, bool isCamera) in QueryNotSyncTotalNumber() argument
[all …]
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/report/
H A Dexternal_files_count_statistic.h53 std::unordered_map<int32_t, int32_t> QueryGalleryNotSyncMedia(const int32_t maxId);
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/
H A Dupgrade_restore.h39 std::vector<FileInfo> QueryFileInfosFromExternal(int32_t offset, int32_t maxId, bool isCamera);
64 void RestoreExternalBatch(int32_t offset, int32_t maxId, bool isCamera, int32_t type);
/ohos5.0/foundation/arkui/napi/interfaces/inner_api/cjffi/native/
H A Dffi_remote_data.cpp87 if (curFFIDataId_ >= static_cast<uint64_t>(maxId)) { in FFIDataIdSafeIncrease()
H A Dffi_remote_data.h72 const int64_t maxId = MAX_INT64; variable
/ohos5.0/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_store.cpp417 int32_t maxId = STATE_FAIL; in GetMaxId() local
418 int32_t result = queryResultSet->GetInt(0, maxId); in GetMaxId()
422 ANSR_LOGD("MaxId: %{public}d.", maxId); in GetMaxId()
423 return maxId; in GetMaxId()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/
H A Dcontainer_modal_pattern.cpp386 InternalResource::ResourceId maxId; in ChangeControlButtons() local
388 maxId = InternalResource::ResourceId::IC_WINDOW_RESTORES; in ChangeControlButtons()
390 maxId = InternalResource::ResourceId::IC_WINDOW_MAX; in ChangeControlButtons()
393 ChangeTitleButtonIcon(maximizeButton, maxId, isFocus, false); in ChangeControlButtons()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/enhance/
H A Dcontainer_modal_pattern_enhance.cpp192 InternalResource::ResourceId maxId = in ChangeControlButtons() local
198 ChangeTitleButtonIcon(maximizeButton, maxId, isFocus, false); in ChangeControlButtons()
/ohos5.0/foundation/resourceschedule/background_task_mgr/services/continuous_task/src/
H A Dbg_continuous_task_mgr.cpp225 int32_t maxId = -1; in CheckPersistenceData() local
230 if (notificationId > maxId) { in CheckPersistenceData()
231 maxId = notificationId; in CheckPersistenceData()
254 if (maxId != -1) { in CheckPersistenceData()
255 BGTASK_LOGI("set maxId %{public}d", maxId); in CheckPersistenceData()
256 NotificationTools::SetNotificationIdIndex(maxId); in CheckPersistenceData()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/
H A Dpan_recognizer.cpp889 int32_t maxId = -1; in GetFastestTracker() local
894 maxId = id; in GetFastestTracker()
898 return maxId; in GetFastestTracker()
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_backup_test/src/
H A Dmedialibrary_backup_test.cpp206 int32_t maxId = BackupDatabaseUtils::QueryInt(gallerySource.galleryStorePtr_, isCamera ? in RestoreFromExternal() local
209 … std::vector<FileInfo> fileInfos = restoreService->QueryFileInfosFromExternal(0, maxId, isCamera); in RestoreFromExternal()
210 MEDIA_INFO_LOG("%{public}d asset will restor, maxid: %{public}d", (int)fileInfos.size(), maxId); in RestoreFromExternal()