• Home
  • Raw
  • Download

Lines Matching full:a

5  * You may obtain a copy of the License at
37 A.name,
39 A.tid,
40 A.id,
41 A.type,
47 left join thread as A on B.itid = A.id
50 left join process AS IP on A.ipid = IP.id
96 A.name as threadName,
106 from thread A,
108 left join callstack C on A.id = C.callid
114 select A.id
115 , A.type
116 , A.tid
117 , A.name
118 , A.start_ts
119 , A.end_ts
120 , A.ipid as upid
121 , A.is_main_thread
129 left join thread as A on A.id = B.itid
131 left join process AS IP on IP.id = A.ipid;
158 from thread_state as A,
160 left join thread as C on A.itid = C.id
162 where A.dur > 0
170 A.name as thread,
172 A.tid as threadId,
180 left join thread as A on B.itid = A.id
181 left join process as IP on A.ipid = IP.id
192 A.name as thread,
194 A.tid as threadId,
196 A.tid as tid,
200 left join thread as A on B.itid = A.id
201 left join process AS IP on A.ipid = IP.id
214 A.tid as tid,
218 left join thread as A on B.itid = A.id
219 left join process AS IP on A.ipid = IP.id
231 from thread_state as A,
233 left join thread as C on A.itid = C.id
235 where A.dur > 0
243 A.name as thread,
244 a.tid as threadId,
246 A.tid as tid,
251 thread as A on B.itid = A.id
253 process AS IP on A.ipid = IP.id
274 A.dur,
275 ((ts + A.dur) - D.start_ts) / ((D.end_ts - D.start_ts) / 100) as ro,
279 from sched_slice A
283 thread B on A.itid = B.id
287 and (A.ts)
303 A.name as thread,
304 A.tid as tid,
311 thread as A
313 A.id = B.itid
319 IP.id = A.ipid
328 A.tid as tid,
331 from thread A,
334 callstack C on A.id = C.callid
355A.ts, LEAD(A.ts, 1, (SELECT end_ts FROM trace_range)) OVER (PARTITION BY A.filter_id ORDER BY ts) …