Lines Matching refs:con
38 con = sqlite3.connect("/dev/shm/perf.db") variable
39 con.isolation_level = None
48 con.execute("""
55 con.execute("""
97 con.execute("insert into gen_events values(?, ?, ?, ?)",
102 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
111 con.close()
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")