Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dreport_html.py105 def threads(self) -> Iterator[ThreadScope]:
124 self.threads: Dict[int, ThreadScope] = {} # map from tid to ThreadScope
126 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 ThreadScope
160 class ThreadScope(object): class
235 def merge(self, thread: ThreadScope): argument