Lines Matching full:threads
151 threads = {}
153 if record._tid in threads:
155 threads[record._tid] = {
172 threads[record._tid]["xaxis"].append(record._timestamp - starttime)
173 threads[record._tid]["yaxis"].append(record._value)
174 threads[record._tid]["labels"].append(self._get_progress_label(progress))
179 for tid in threads.keys():
181 go.Scatter(x=threads[tid]["xaxis"],
182 y=threads[tid]["yaxis"],
191 text=threads[tid]["labels"]))
266 threads = {}
268 if record._tid in threads:
270 threads[record._tid] = {
289 oldvalue = threads[record._tid]["absvalue"][-1]
290 oldtime = threads[record._tid]["abstime"][-1]
300 threads[record._tid]["absvalue"].append(record._value)
301 threads[record._tid]["abstime"].append(record._timestamp)
303 threads[record._tid]["xaxis"].append(record._timestamp - starttime)
304 threads[record._tid]["yaxis"].append(util)
305 threads[record._tid]["labels"].append(self._get_progress_label(progress))
310 for tid in threads.keys():
312 go.Scatter(x=threads[tid]["xaxis"],
313 y=threads[tid]["yaxis"],
323 text=threads[tid]["labels"]))
550 <th>MT compression threads:</th>