• Home
  • Raw
  • Download

Lines Matching full:a

5  * You may obtain a copy of the License at
21 A.name,
23 A.tid,
24 A.id,
25 A.type,
31 left join thread as A on B.itid = A.id
34 left join process AS IP on A.ipid = IP.id
80 A.name as threadName,
90 from thread A,
92 left join callstack C on A.id = C.callid
98 select A.id
99 , A.type
100 , A.tid
101 , A.name
102 , A.start_ts
103 , A.end_ts
104 , A.ipid as upid
105 , A.is_main_thread
113 left join thread as A on A.id = B.itid
115 left join process AS IP on IP.id = A.ipid;
142 from thread_state as A,
144 left join thread as C on A.itid = C.id
146 where A.dur > 0
154 A.name as thread,
156 A.tid as threadId,
164 left join thread as A on B.itid = A.id
165 left join process as IP on A.ipid = IP.id
176 A.name as thread,
178 A.tid as threadId,
180 A.tid as tid,
184 left join thread as A on B.itid = A.id
185 left join process AS IP on A.ipid = IP.id
198 A.tid as tid,
202 left join thread as A on B.itid = A.id
203 left join process AS IP on A.ipid = IP.id
215 from thread_state as A,
217 left join thread as C on A.itid = C.id
219 where A.dur > 0
227 A.name as thread,
228 a.tid as threadId,
230 A.tid as tid,
235 thread as A on B.itid = A.id
237 process AS IP on A.ipid = IP.id
258 A.dur,
259 ((ts + A.dur) - D.start_ts) / ((D.end_ts - D.start_ts) / 100) as ro,
263 from sched_slice A
267 thread B on A.itid = B.id
271 and (A.ts)
287 A.name as thread,
288 A.tid as tid,
295 thread as A
297 A.id = B.itid
303 IP.id = A.ipid
312 A.tid as tid,
315 from thread A,
318 callstack C on A.id = C.callid
339A.ts, LEAD(A.ts, 1, (SELECT end_ts FROM trace_range)) OVER (PARTITION BY A.filter_id ORDER BY ts) …