Lines Matching full:a
5 * You may obtain a copy of the License at
109 FROM frame_slice AS a
110 LEFT JOIN process AS p ON a.ipid = p.ipid
111 WHERE a.flag <> 2;
120 a.id,
121 (a.ts - TR.start_ts) AS ts,
122 a.vsync AS name,
123 a.type,
124 a.dur,
125 a.src AS src_slice,
126 a.flag AS jank_tag,
127 a.dst AS dst_slice,
131 FROM frame_slice AS a, trace_range AS TR
132 LEFT JOIN process AS p ON a.ipid = p.ipid
133 WHERE a.type = 0
134 AND a.flag <> 2
135 ORDER BY a.ipid, ts;`
205 a.id,
206 (a.ts - TR.start_ts) AS startTs,
207 a.vsync AS name,
208 a.type,
209 a.dur,
210 a.src AS src_slice,
211 a.flag AS jank_tag,
212 a.dst AS dst_slice,
216 FROM frame_slice AS a, trace_range AS TR
217 LEFT JOIN process AS p ON a.ipid = p.ipid
218 WHERE a.type = 0
219 AND a.flag <> 2