Lines Matching full:a
5 * You may obtain a copy of the License at
104 FROM frame_slice AS a
105 LEFT JOIN process AS p ON a.ipid = p.ipid
113 a.id,
114 (a.ts - TR.start_ts) AS ts,
115 a.vsync AS name,
116 a.type,
117 a.dur,
118 a.src AS src_slice,
119 a.flag AS jank_tag,
120 a.dst AS dst_slice,
124 FROM frame_slice AS a, trace_range AS TR
125 LEFT JOIN process AS p ON a.ipid = p.ipid
126 WHERE a.type = 0
127 AND a.flag <> 2
128 ORDER BY a.ipid, ts;`
195 a.id,
196 (a.ts - TR.start_ts) AS startTs,
197 a.vsync AS name,
198 a.type,
199 a.dur,
200 a.src AS src_slice,
201 a.flag AS jank_tag,
202 a.dst AS dst_slice,
206 FROM frame_slice AS a, trace_range AS TR
207 LEFT JOIN process AS p ON a.ipid = p.ipid
208 WHERE a.type = 0
209 AND a.flag <> 2