Lines Matching full:a
5 * You may obtain a copy of the License at
40 A.name,
42 A.tid,
43 A.id,
44 A.type,
50 left join thread as A on B.itid = A.id
53 left join process AS IP on A.ipid = IP.id
96 A.name as threadName,
106 from thread A,trace_range D
107 left join callstack C on A.id = C.callid
112 …te table temp_query_thread_data as select A.id, A.type, A.tid, A.name, A.start_ts, A.end_ts, A.ipi…
115 left join thread as A on A.id=B.itid
117 left join process AS IP on IP.id=A.ipid;
138 from thread_state as A,trace_range as B
139 left join thread as C on A.itid = C.id
141 where A.dur > 0 and processId not null and (ts - B.start_ts)>0;
148 A.name as thread,
150 A.tid as threadId,
158 left join thread as A on B.itid = A.id
159 left join process as IP on A.ipid = IP.id
170 A.name as thread,
172 A.tid as threadId,
174 A.tid as tid,
178 left join thread as A on B.itid = A.id
179 left join process AS IP on A.ipid = IP.id
192 A.tid as tid,
196 left join thread as A on B.itid = A.id
197 left join process AS IP on A.ipid = IP.id
209 from thread_state as A,trace_range as B
210 left join thread as C on A.itid = C.id
212 where A.dur > 0 and IP.pid not null and (ts - B.start_ts > 0);
220 A.name as thread,
221 a.tid as threadId,
223 A.tid as tid,
229 thread as A on B.itid = A.id
231 process AS IP on A.ipid = IP.id
257 A.dur,
258 ((ts+A.dur)-D.start_ts)/((D.end_ts-D.start_ts)/100) as ro,
263 sched_slice A
267 thread B on A.itid = B.id
272 and (A.ts)
288 A.name as thread,
289 A.tid as tid,
297 thread as A
299 A.id = B.itid
305 IP.id=A.ipid
316 A.tid as tid,
320 thread A,
323 callstack C on A.id = C.callid
336 …A.ts, LEAD(A.ts, 1, (SELECT end_ts FROM trace_range)) OVER (PARTITION BY A.filter_id ORDER BY ts) …