Lines Matching defs:it
172 typedef std::set<BaseMutex*>::const_iterator It;
174 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
175 BaseMutex* mutex = *it;
182 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
183 BaseMutex* mutex = *it;
234 // This code is intentionally racy as it is only used for diagnostics.
271 auto it = most_common_blocked.find(blocked_tid);
272 if (it != most_common_blocked.end()) {
273 most_common_blocked.Overwrite(blocked_tid, it->second + count);
277 it = most_common_blocker.find(owner_tid);
278 if (it != most_common_blocker.end()) {
279 most_common_blocker.Overwrite(owner_tid, it->second + count);
671 // Owner holds it exclusively, hang up.
693 // Owner holds it exclusively.
813 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
841 // Futex failed, check it is an expected error.