Lines Matching refs:upid
84 `upid` (same for process table), `cpu` (the cpu the event occurred on), `irq`
115 `upid` (same for process table), `cpu` (the cpu the event occurred on), `irq`
159 `upid`
175 | upid | name | pid |
190 `upid`
203 | utid | upid | name | tid |
279 …proc_name, pid, thread.name as thread_name, tid from thread left join process using(upid) limit 100
289 …order by dur desc limit 100) left outer join thread using(utid) left outer join process using(upid)
294 select process.name, tot_proc/1e9 as cpu_sec from (select upid, sum(tot_thd) as
296 thread using(utid) group by upid) join process using(upid) order by cpu_sec desc
302 …upid, cpu, cpu_sec from (select cpu, utid, sum(dur)/1e9 as cpu_sec from sched group by utid) left …