D | export-to-postgresql.py | 656 def machine_table(machine_id, pid, root_dir, *x): argument 659 value = struct.pack(fmt, 3, 8, machine_id, 4, pid, n, root_dir) 662 def thread_table(thread_id, machine_id, process_id, pid, tid, *x): argument 663 value = struct.pack("!hiqiqiqiiii", 5, 8, thread_id, 8, machine_id, 8, process_id, 4, pid, 4, tid) 677 def dso_table(dso_id, machine_id, short_name, long_name, build_id, *x): argument 682 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id) 697 def sample_table(sample_id, evsel_id, machine_id, thread_id, comm_id, dso_id, symbol_id, sym_offset… argument 699 …iqiqiqiqiqiqiqiqiqiqiiiqiqiqiqiiiB", 17, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8… 701 …iqiqiqiqiqiqiiiqiqiqiqiqiqiqiqiiiB", 21, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8…
|