Home
last modified time | relevance | path

Searched refs:lastTimeMap_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/filemanagement/dfs_service/frameworks/native/cloud_file_kit_inner/src/big_data_statistics/
H A Dcloud_file_fault_event.cpp39 if (lastTimeMap_.find(faultType) != lastTimeMap_.end()) { in IsAllowToReport()
43 if (lastTimeMap_[faultType] == 0 || in IsAllowToReport()
44 (currentTime_ > lastTimeMap_[faultType] && in IsAllowToReport()
45 currentTime_ - lastTimeMap_[faultType] > MINIMUM_FAULT_REPORT_INTERVAL)) { in IsAllowToReport()
46 lastTimeMap_[faultType] = currentTime_; in IsAllowToReport()
58 lastTimeMap_[faultType] = 0; in CloudFaultReportStatus()
/ohos5.0/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloud_file_kit_inner/big_data_statistics/
H A Dcloud_file_fault_event.h144 std::unordered_map<FaultType, int64_t> lastTimeMap_; variable