Home
last modified time | relevance | path

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

/system/memory/libmemunreachable/
DThreadCapture.cpp92 allocator::map<pid_t, unsigned int> captured_threads_; member in android::ThreadCaptureImpl
99 : captured_threads_(allocator), allocator_(allocator), pid_(pid) {} in ThreadCaptureImpl()
164 auto captured = captured_threads_.find(*it); in CaptureThreads()
165 if (captured == captured_threads_.end()) { in CaptureThreads()
293 captured_threads_[tid] = resume_signal; in CaptureThread()
298 auto it = captured_threads_.find(tid); in ReleaseThread()
299 if (it == captured_threads_.end()) { in ReleaseThread()
312 for (auto it = captured_threads_.begin(); it != captured_threads_.end();) { in ReleaseThreads()
314 it = captured_threads_.erase(it); in ReleaseThreads()
326 for (auto it = captured_threads_.begin(); it != captured_threads_.end(); it++) { in CapturedThreadInfo()