Searched refs:ThreadScope (Results 1 – 1 of 1) sorted by relevance
105 def threads(self) -> Iterator[ThreadScope]:124 self.threads: Dict[int, ThreadScope] = {} # map from tid to ThreadScope126 def get_thread(self, tid: int, thread_name: str) -> ThreadScope:129 thread = self.threads[tid] = ThreadScope(tid)146 thread_list: List[ThreadScope] = list(148 new_threads: Dict[str, ThreadScope] = {} # map from thread name to ThreadScope160 class ThreadScope(object): class235 def merge(self, thread: ThreadScope): argument