Lines Matching refs:it
161 for (auto it = tids.begin(); it != tids.end(); it++) { in CaptureThreads() local
162 auto captured = captured_threads_.find(*it); in CaptureThreads()
164 if (CaptureThread(*it) < 0) { in CaptureThreads()
302 auto it = captured_threads_.find(tid); in ReleaseThread() local
303 if (it == captured_threads_.end()) { in ReleaseThread()
306 return ReleaseThread(it->first, it->second); in ReleaseThread()
316 for (auto it = captured_threads_.begin(); it != captured_threads_.end(); ) { in ReleaseThreads() local
317 if (ReleaseThread(it->first, it->second)) { in ReleaseThreads()
318 it = captured_threads_.erase(it); in ReleaseThreads()
320 it++; in ReleaseThreads()
330 for (auto it = captured_threads_.begin(); it != captured_threads_.end(); it++) { in CapturedThreadInfo() local
332 if (!PtraceThreadInfo(it->first, t)) { in CapturedThreadInfo()