D | export-to-postgresql.py | 398 def comm_table(comm_id, comm_str, *x): argument 401 value = struct.pack(fmt, 2, 8, comm_id, n, comm_str) 404 def comm_thread_table(comm_thread_id, comm_id, thread_id, *x): argument 406 value = struct.pack(fmt, 3, 8, comm_thread_id, 8, comm_id, 8, thread_id) 429 def sample_table(sample_id, evsel_id, machine_id, thread_id, comm_id, dso_id, symbol_id, sym_offset… argument 431 …qiqiiiB", 17, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8, comm_id, 8, dso_id, 8, sy… 433 …qiqiiiB", 21, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8, comm_id, 8, dso_id, 8, sy… 441 def call_return_table(cr_id, thread_id, comm_id, call_path_id, call_time, return_time, branch_count… argument 443 …value = struct.pack(fmt, 11, 8, cr_id, 8, thread_id, 8, comm_id, 8, call_path_id, 8, call_time, 8,…
|