Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hiview/base/event_store/store/
H A Dsys_event_database.cpp198 if (quotaMap_.empty()) { in Clear()
266 quotaMap_.insert({eventType, {maxSize, maxFileNum}}); in InitQuotaMap()
322 if (quotaMap_.empty() || quotaMap_.find(type) == quotaMap_.end()) { in GetMaxFileNum()
325 return quotaMap_.at(type).second; in GetMaxFileNum()
330 if (quotaMap_.empty() || quotaMap_.find(type) == quotaMap_.end()) { in GetMaxSize()
333 return quotaMap_.at(type).first; in GetMaxSize()
/ohos5.0/base/hiviewdfx/hiview/base/event_store/store/include/
H A Dsys_event_database.h64 EventQuotaMap quotaMap_; variable