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
119 a.id,
120 (a.ts - TR.start_ts) AS ts,
121 a.vsync AS name,
122 a.type,
123 a.dur,
124 a.src AS src_slice,
125 a.flag AS jank_tag,
126 a.dst AS dst_slice,
130 FROM frame_slice AS a, trace_range AS TR
131 LEFT JOIN process AS p ON a.ipid = p.ipid
132 WHERE a.type = 0
133 AND a.flag <> 2
134 ORDER BY a.ipid, ts;`
204 a.id,
205 (a.ts - TR.start_ts) AS startTs,
206 a.vsync AS name,
207 a.type,
208 a.dur,
209 a.src AS src_slice,
210 a.flag AS jank_tag,
211 a.dst AS dst_slice,
215 FROM frame_slice AS a, trace_range AS TR
216 LEFT JOIN process AS p ON a.ipid = p.ipid
217 WHERE a.type = 0
218 AND a.flag <> 2