Lines Matching refs:QueryExec

183 def QueryExec(query, stmt):  function
545QueryExec(query, "SELECT call_path_id, name, short_name, COUNT(calls.id), SUM(return_time - call_t…
628 QueryExec(query, "SELECT thread_id, pid, tid"
649 QueryExec(query, "SELECT id, comm FROM comms" + if_has_calls)
774 QueryExec(query, "SELECT call_path_id, comm_id, thread_id"
791 QueryExec(q2, "SELECT parent_id"
830QueryExec(query, "SELECT calls.id, name, short_name, call_time, return_time - call_time" + ipc_str…
910 QueryExec(query, "SELECT thread_id, pid, tid"
931 QueryExec(query, "SELECT id, comm FROM comms" + if_has_calls)
970 QueryExec(query, "SELECT calls.id, comm_id, thread_id"
986 QueryExec(q2, "SELECT parent_id"
1178 QueryExec(query, "SELECT comm_threads.comm_id, comms.c_time, comms.exec_flag"
1304 QueryExec(query, "SELECT id, c_time"
1324 QueryExec(query, "SELECT time, thread_out_id, thread_in_id, comm_out_id, comm_in_id, flags"
1353 QueryExec(query, "SELECT pid, tid FROM threads WHERE id = " + str(thread_id))
1361 QueryExec(query, "SELECT comm FROM comms WHERE id = " + str(comm_id))
1423 QueryExec(query, "SELECT DISTINCT cpu"
2566 QueryExec(self.query, stmt)
2914QueryExec(query, "SELECT cpu, to_dso_id, to_symbol_id, to_sym_offset, short_name, long_name, build…
2933 QueryExec(query, "SELECT samples.dso_id, symbol_id, sym_offset, sym_start"
3443 QueryExec(query, "SELECT id, time FROM samples ORDER BY id DESC LIMIT 1")
3454QueryExec(query, "SELECT id FROM samples WHERE id > " + str(lower_id) + " AND id < " + str(higher_…
3464 QueryExec(query, "SELECT time FROM samples WHERE id = " + str(next_id))
3472 QueryExec(query, "SELECT time FROM samples WHERE id = " + str(next_id))
3653 QueryExec(query, "SELECT name FROM selected_events WHERE id > 0 ORDER BY id")
3663 QueryExec(query, "SELECT " + columns + " FROM " + table + " " + sql + " LIMIT 1")
3753 QueryExec(query, "PRAGMA table_info(" + table_name + ")")
3766QueryExec(query, "SELECT column_name FROM information_schema.columns WHERE table_schema = '" + sch…
4121QueryExec(query, "SELECT name FROM sqlite_master WHERE type IN ( 'table' , 'view' ) ORDER BY name")
4123QueryExec(query, "SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' A…
4507 QueryExec(query, "SELECT VERSION()")
4520 QueryExec(query, "SELECT sqlite_version()")
4836 QueryExec(query, "SELECT id FROM machines WHERE pid = -1")
4851 QueryExec(query, sql)