Home
last modified time | relevance | path

Searched refs:dbe (Results 1 – 3 of 3) sorted by relevance

/tools/perf/util/
Ddb-export.c24 int db_export__init(struct db_export *dbe) in db_export__init() argument
26 memset(dbe, 0, sizeof(struct db_export)); in db_export__init()
30 void db_export__exit(struct db_export *dbe) in db_export__exit() argument
32 call_return_processor__free(dbe->crp); in db_export__exit()
33 dbe->crp = NULL; in db_export__exit()
36 int db_export__evsel(struct db_export *dbe, struct evsel *evsel) in db_export__evsel() argument
41 evsel->db_id = ++dbe->evsel_last_db_id; in db_export__evsel()
43 if (dbe->export_evsel) in db_export__evsel()
44 return dbe->export_evsel(dbe, evsel); in db_export__evsel()
49 int db_export__machine(struct db_export *dbe, struct machine *machine) in db_export__machine() argument
[all …]
Ddb-export.h42 int (*export_evsel)(struct db_export *dbe, struct evsel *evsel);
43 int (*export_machine)(struct db_export *dbe, struct machine *machine);
44 int (*export_thread)(struct db_export *dbe, struct thread *thread,
46 int (*export_comm)(struct db_export *dbe, struct comm *comm,
48 int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
50 int (*export_dso)(struct db_export *dbe, struct dso *dso,
52 int (*export_symbol)(struct db_export *dbe, struct symbol *sym,
54 int (*export_branch_type)(struct db_export *dbe, u32 branch_type,
56 int (*export_sample)(struct db_export *dbe, struct export_sample *es);
57 int (*export_call_path)(struct db_export *dbe, struct call_path *cp);
[all …]
/tools/perf/util/scripting-engines/
Dtrace-event-python.c110 struct db_export dbe; member
1149 static int python_export_evsel(struct db_export *dbe, struct evsel *evsel) in python_export_evsel() argument
1151 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
1166 static int python_export_machine(struct db_export *dbe, in python_export_machine() argument
1169 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
1185 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread() argument
1188 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread()
1206 static int python_export_comm(struct db_export *dbe, struct comm *comm, in python_export_comm() argument
1209 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm()
1227 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
[all …]