• Home
  • Raw
  • Download

Lines Matching refs:thread_id

527 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br…  argument
530 self.thread_id = thread_id
551 " AND thread_id = " + str(self.thread_id) +
563 …elThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.thread_id, query.value(0),…
571 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, name, dso, count, time, ins… argument
572 …super(CallGraphLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, call_path_id, …
588 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item): argument
589 …super(CallGraphLevelTwoItem, self).__init__(glb, params, row, comm_id, thread_id, 1, 0, 0, 0, 0, p…
594 self.dbid = thread_id
807 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, call_time, time, insn_cnt, cyc_… argument
810 self.thread_id = thread_id
821 comm_thread = " AND comm_id = " + str(self.comm_id) + " AND thread_id = " + str(self.thread_id)
845 …elThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.thread_id, query.value(0),…
853 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, name, dso, call_time, time, ins… argument
854 …super(CallTreeLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, calls_id, call_…
870 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item): argument
871 …super(CallTreeLevelTwoItem, self).__init__(glb, params, row, comm_id, thread_id, 0, 0, 0, 0, 0, 0,…
876 self.dbid = thread_id
1130 def DisplayThreadAtTime(self, comm_id, thread_id, time): argument
1132 for dbid in (comm_id, thread_id):
1175 def ExecComm(db, thread_id, time): argument
1180 " WHERE comm_threads.thread_id = " + str(thread_id) +
1238 def __init__(self, key, exec_comm_id, pid, tid, comm, thread_id, comm_id): argument
1248 self.thread_id = thread_id
1301 def SelectComms(self, db, thread_id, last_comm_id, start_time, end_time): argument
1305 " WHERE c_thread_id = " + str(thread_id) +
1315 hregion = self.HRegion(db, thread_id, comm_id, time)
1342 thread_id = query.value(2)
1343 hregion = self.HRegion(db, thread_id, comm_id, time)
1347 last_thread_id = thread_id
1349 def NewHRegion(self, db, key, thread_id, comm_id, time): argument
1350 exec_comm_id = ExecComm(db, thread_id, time)
1352 QueryExec(query, "SELECT pid, tid FROM threads WHERE id = " + str(thread_id))
1365 return SwitchGraphDataRegion(key, exec_comm_id, pid, tid, comm, thread_id, comm_id)
1367 def HRegion(self, db, thread_id, comm_id, time): argument
1368 key = str(thread_id) + ":" + str(comm_id)
1371 hregion = self.NewHRegion(db, key, thread_id, comm_id, time)
2291 thread_at_time = (hregion.exec_comm_id, hregion.thread_id, time)