Lines Matching refs:pid

41 #	The next level is a thread (pid:tid)
589 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item):
592 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", "", "", "", "", "", ""]
594 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", ""]
628 QueryExec(query, "SELECT thread_id, pid, tid"
871 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item):
874 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", "", "", "", "", "", ""]
876 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", ""]
910 QueryExec(query, "SELECT thread_id, pid, tid"
1239 def __init__(self, key, exec_comm_id, pid, tid, comm, thread_id, comm_id):
1242 self.title = str(pid) + " / " + str(tid) + " " + comm
1243 # Order graph legend within exec comm by pid / tid / time
1244 self.ordinal = str(pid).rjust(16) + str(exec_comm_id).rjust(8) + str(tid).rjust(16)
1246 self.pid = pid
1353 QueryExec(query, "SELECT pid, tid FROM threads WHERE id = " + str(thread_id))
1355 pid = query.value(0)
1358 pid = -1
1366 return SwitchGraphDataRegion(key, exec_comm_id, pid, tid, comm, thread_id, comm_id)
1448 if not(last is None or last.hregion.pid == 0 or x < self.attrs.subrange.x.lo):
1932 self.column_headers = ("pid", "tid", "comm")
1969 return hregion.pid
2207 if hregion.pid == 0 and hregion.tid == 0:
2293 menu_text = "Show Call Tree for {} {}:{} at {}".format(hregion.comm, hregion.pid, hregion.tid, time)
3109 sql = ("SELECT samples.id, time, cpu, comm, pid, tid, branch_types.name,"
3641 lambda g, p: SQLTableDataItem(g, "PIDs:", "Only branches with these process IDs will be included", "threads", "pid", "thread_id", "", p),
4145 sql = ("SELECT comm, pid, tid, name,"
4182 lambda g, p: SQLTableDataItem(g, "PIDs:", "Only calls with these process IDs will be included", "threads", "pid", "thread_id", "", p),
4367 <li>The next level is a thread (pid:tid)</li>
4836 QueryExec(query, "SELECT id FROM machines WHERE pid = -1")