Lines Matching refs:threads
91 def threads(self): member in EventScope
93 for thread in process.threads.values():
99 for thread in process.threads.values():
110 self.threads = {} # map from tid to ThreadScope
113 thread = self.threads.get(tid)
115 thread = self.threads[tid] = ThreadScope(tid)
125 threads = sorted(self.threads.values(), key=lambda a: a.event_count, reverse=True)
127 for thread in threads]
132 thread_list = list(self.threads.values()) + list(process.threads.values())
140 self.threads = {}
142 self.threads[thread.tid] = thread
625 for thread in event.threads:
648 for thread in process.threads.values():
654 del process.threads[thread]
655 if not process.threads:
797 for thread in process.threads.values():