Lines Matching refs:comm_id

528 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br…  argument
530 self.comm_id = comm_id
551 " AND comm_id = " + str(self.comm_id) +
564 …child_item = CallGraphLevelThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.t…
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…
617 def __init__(self, glb, params, row, comm_id, comm, parent_item): argument
623 self.dbid = comm_id
808 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, call_time, time, insn_cnt, cyc_… argument
810 self.comm_id = comm_id
822 comm_thread = " AND comm_id = " + str(self.comm_id) + " AND thread_id = " + str(self.thread_id)
846 …child_item = CallTreeLevelThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.th…
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,…
899 def __init__(self, glb, params, row, comm_id, comm, parent_item): argument
905 self.dbid = comm_id
1131 def DisplayThreadAtTime(self, comm_id, thread_id, time): argument
1133 for dbid in (comm_id, thread_id):
1239 def __init__(self, key, exec_comm_id, pid, tid, comm, thread_id, comm_id): argument
1250 self.comm_id = comm_id
1312 comm_id = query.value(0)
1313 if comm_id == last_comm_id:
1316 hregion = self.HRegion(db, thread_id, comm_id, time)
1342 comm_id = query.value(4)
1344 hregion = self.HRegion(db, thread_id, comm_id, time)
1347 last_comm_id = comm_id
1350 def NewHRegion(self, db, key, thread_id, comm_id, time): argument
1361 QueryExec(query, "SELECT comm FROM comms WHERE id = " + str(comm_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)