Searched refs:db_id (Results 1 – 10 of 10) sorted by relevance
/linux-4.1.27/tools/perf/util/ |
D | db-export.c | 98 if (evsel->db_id) in db_export__evsel() 101 evsel->db_id = ++dbe->evsel_last_db_id; in db_export__evsel() 111 if (machine->db_id) in db_export__machine() 114 machine->db_id = ++dbe->machine_last_db_id; in db_export__machine() 128 if (thread->db_id) in db_export__thread() 131 thread->db_id = ++dbe->thread_last_db_id; in db_export__thread() 154 main_thread_db_id = main_thread->db_id; in db_export__thread() 169 if (comm->db_id) in db_export__comm() 172 comm->db_id = ++dbe->comm_last_db_id; in db_export__comm() 189 u64 db_id; in db_export__comm_thread() local [all …]
|
D | thread-stack.h | 67 u64 db_id; member 88 u64 db_id; member
|
D | db-export.h | 38 u64 db_id; member 54 int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
|
D | comm.h | 17 u64 db_id; member
|
D | thread.h | 30 u64 db_id; member
|
D | dso.h | 174 u64 db_id; member
|
D | machine.h | 45 u64 db_id; member
|
D | thread-stack.c | 204 .db_id = 0, in thread_stack__call_return() 336 cp->db_id = 0; in call_path__init()
|
D | evsel.h | 81 u64 db_id; member
|
/linux-4.1.27/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 520 tuple_set_u64(t, 0, evsel->db_id); in python_export_evsel() 538 tuple_set_u64(t, 0, machine->db_id); in python_export_machine() 557 tuple_set_u64(t, 0, thread->db_id); in python_export_thread() 558 tuple_set_u64(t, 1, machine->db_id); in python_export_thread() 577 tuple_set_u64(t, 0, comm->db_id); in python_export_comm() 587 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument 595 tuple_set_u64(t, 0, db_id); in python_export_comm_thread() 596 tuple_set_u64(t, 1, comm->db_id); in python_export_comm_thread() 597 tuple_set_u64(t, 2, thread->db_id); in python_export_comm_thread() 617 tuple_set_u64(t, 0, dso->db_id); in python_export_dso() [all …]
|