Lines Matching refs:con
36 con = sqlite3.connect("/dev/shm/perf.db") variable
37 con.isolation_level = None
46 con.execute("""
53 con.execute("""
95 con.execute("insert into gen_events values(?, ?, ?, ?)",
100 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
109 con.close()
124 count = con.execute("select count(*) from gen_events")
133 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
140 …symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -coun…
146 … dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)")
157 count = con.execute("select count(*) from pebs_ll")
166 … commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)")
173 …symbolq = con.execute("select symbol, count(symbol) from pebs_ll group by symbol order by -count(s…
178 dseq = con.execute("select dse, count(dse) from pebs_ll group by dse order by -count(dse)")
184 latq = con.execute("select lat, count(lat) from pebs_ll group by lat order by lat")