Lines Matching refs:it
53 auto it = g_domainMap.find(domainId);
54 if (it != g_domainMap.end()) {
55 LogTimeStamp start = it->second.startTime;
59 it->second.startTime = tsNow;
60 it->second.sumLen = logLen;
61 ret = static_cast<int>(it->second.dropped);
62 it->second.dropped = 0;
64 if (it->second.sumLen <= it->second.quota) { /* under quota */
65 it->second.sumLen += logLen;
68 it->second.dropped++;