Lines Matching refs:thread_id
528 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br… argument
531 self.thread_id = thread_id
552 " AND thread_id = " + str(self.thread_id) +
564 …elThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.thread_id, query.value(0),…
572 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, name, dso, count, time, ins… argument
573 …super(CallGraphLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, call_path_id, …
589 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item): argument
590 …super(CallGraphLevelTwoItem, self).__init__(glb, params, row, comm_id, thread_id, 1, 0, 0, 0, 0, p…
595 self.dbid = thread_id
808 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, call_time, time, insn_cnt, cyc_… argument
811 self.thread_id = thread_id
822 comm_thread = " AND comm_id = " + str(self.comm_id) + " AND thread_id = " + str(self.thread_id)
846 …elThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.thread_id, query.value(0),…
854 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, name, dso, call_time, time, ins… argument
855 …super(CallTreeLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, calls_id, call_…
871 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item): argument
872 …super(CallTreeLevelTwoItem, self).__init__(glb, params, row, comm_id, thread_id, 0, 0, 0, 0, 0, 0,…
877 self.dbid = thread_id
1131 def DisplayThreadAtTime(self, comm_id, thread_id, time): argument
1133 for dbid in (comm_id, thread_id):
1176 def ExecComm(db, thread_id, time): argument
1181 " WHERE comm_threads.thread_id = " + str(thread_id) +
1239 def __init__(self, key, exec_comm_id, pid, tid, comm, thread_id, comm_id): argument
1249 self.thread_id = thread_id
1302 def SelectComms(self, db, thread_id, last_comm_id, start_time, end_time): argument
1306 " WHERE c_thread_id = " + str(thread_id) +
1316 hregion = self.HRegion(db, thread_id, comm_id, time)
1343 thread_id = query.value(2)
1344 hregion = self.HRegion(db, thread_id, comm_id, time)
1348 last_thread_id = thread_id
1350 def NewHRegion(self, db, key, thread_id, comm_id, time): argument
1351 exec_comm_id = ExecComm(db, thread_id, time)
1353 QueryExec(query, "SELECT pid, tid FROM threads WHERE id = " + str(thread_id))
1366 return SwitchGraphDataRegion(key, exec_comm_id, pid, tid, comm, thread_id, comm_id)
1368 def HRegion(self, db, thread_id, comm_id, time): argument
1369 key = str(thread_id) + ":" + str(comm_id)
1372 hregion = self.NewHRegion(db, key, thread_id, comm_id, time)
2292 thread_at_time = (hregion.exec_comm_id, hregion.thread_id, time)