Lines Matching refs:it
154 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { in DumpAll() local
155 BaseMutex* mutex = *it; in DumpAll()
162 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { in DumpAll() local
163 BaseMutex* mutex = *it; in DumpAll()
253 It it = most_common_blocked.find(blocked_tid); in DumpContention() local
254 if (it != most_common_blocked.end()) { in DumpContention()
255 most_common_blocked.Overwrite(blocked_tid, it->second + count); in DumpContention()
259 it = most_common_blocker.find(owner_tid); in DumpContention()
260 if (it != most_common_blocker.end()) { in DumpContention()
261 most_common_blocker.Overwrite(owner_tid, it->second + count); in DumpContention()
269 for (It it = most_common_blocked.begin(); it != most_common_blocked.end(); ++it) { in DumpContention() local
270 if (it->second > max_tid_count) { in DumpContention()
271 max_tid = it->first; in DumpContention()
272 max_tid_count = it->second; in DumpContention()
280 for (It it = most_common_blocker.begin(); it != most_common_blocker.end(); ++it) { in DumpContention() local
281 if (it->second > max_tid_count) { in DumpContention()
282 max_tid = it->first; in DumpContention()
283 max_tid_count = it->second; in DumpContention()