Lines Matching refs:pid
41 # The next level is a thread (pid:tid)
588 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item):
591 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", "", "", "", "", "", ""]
593 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", ""]
627 QueryExec(query, "SELECT thread_id, pid, tid"
870 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item):
873 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", "", "", "", "", "", ""]
875 self.data = [str(pid) + ":" + str(tid), "", "", "", "", "", ""]
909 QueryExec(query, "SELECT thread_id, pid, tid"
1238 def __init__(self, key, exec_comm_id, pid, tid, comm, thread_id, comm_id):
1241 self.title = str(pid) + " / " + str(tid) + " " + comm
1242 # Order graph legend within exec comm by pid / tid / time
1243 self.ordinal = str(pid).rjust(16) + str(exec_comm_id).rjust(8) + str(tid).rjust(16)
1245 self.pid = pid
1352 QueryExec(query, "SELECT pid, tid FROM threads WHERE id = " + str(thread_id))
1354 pid = query.value(0)
1357 pid = -1
1365 return SwitchGraphDataRegion(key, exec_comm_id, pid, tid, comm, thread_id, comm_id)
1447 if not(last is None or last.hregion.pid == 0 or x < self.attrs.subrange.x.lo):
1931 self.column_headers = ("pid", "tid", "comm")
1968 return hregion.pid
2206 if hregion.pid == 0 and hregion.tid == 0:
2292 menu_text = "Show Call Tree for {} {}:{} at {}".format(hregion.comm, hregion.pid, hregion.tid, time)
3108 sql = ("SELECT samples.id, time, cpu, comm, pid, tid, branch_types.name,"
3640 lambda g, p: SQLTableDataItem(g, "PIDs:", "Only branches with these process IDs will be included", "threads", "pid", "thread_id", "", p),
4144 sql = ("SELECT comm, pid, tid, name,"
4181 lambda g, p: SQLTableDataItem(g, "PIDs:", "Only calls with these process IDs will be included", "threads", "pid", "thread_id", "", p),
4366 <li>The next level is a thread (pid:tid)</li>
4923 QueryExec(query, "SELECT id FROM machines WHERE pid = -1")