Lines Matching +full:way +full:- +full:select
2 # SPDX-License-Identifier: GPL-2.0
6 # providing end user/developer a flexible way to analyze the events other
27 '/scripts/python/Perf-Trace-Util/lib/Perf/Trace')
114 # As the event number may be very big, so we can't use linear way
126 count = con.execute("select count(*) from gen_events")
135 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
142 …symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -coun…
148 … dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)")
159 count = con.execute("select count(*) from pebs_ll")
168 … commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)")
175 …symbolq = con.execute("select symbol, count(symbol) from pebs_ll group by symbol order by -count(s…
180 dseq = con.execute("select dse, count(dse) from pebs_ll group by dse order by -count(dse)")
186 latq = con.execute("select lat, count(lat) from pebs_ll group by lat order by lat")