Home
last modified time | relevance | path

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

/linux-4.4.14/tools/perf/util/
Ddb-export.h48 struct db_export { struct
49 int (*export_evsel)(struct db_export *dbe, struct perf_evsel *evsel); argument
50 int (*export_machine)(struct db_export *dbe, struct machine *machine); argument
51 int (*export_thread)(struct db_export *dbe, struct thread *thread, argument
53 int (*export_comm)(struct db_export *dbe, struct comm *comm); argument
54 int (*export_comm_thread)(struct db_export *dbe, u64 db_id, argument
56 int (*export_dso)(struct db_export *dbe, struct dso *dso, argument
58 int (*export_symbol)(struct db_export *dbe, struct symbol *sym, argument
60 int (*export_branch_type)(struct db_export *dbe, u32 branch_type, argument
62 int (*export_sample)(struct db_export *dbe, struct export_sample *es); argument
[all …]
Ddb-export.c33 static int db_export__deferred(struct db_export *dbe) in db_export__deferred()
51 static void db_export__free_deferred(struct db_export *dbe) in db_export__free_deferred()
63 static int db_export__defer_comm(struct db_export *dbe, struct comm *comm) in db_export__defer_comm()
77 int db_export__init(struct db_export *dbe) in db_export__init()
79 memset(dbe, 0, sizeof(struct db_export)); in db_export__init()
84 int db_export__flush(struct db_export *dbe) in db_export__flush()
89 void db_export__exit(struct db_export *dbe) in db_export__exit()
96 int db_export__evsel(struct db_export *dbe, struct perf_evsel *evsel) in db_export__evsel()
109 int db_export__machine(struct db_export *dbe, struct machine *machine) in db_export__machine()
122 int db_export__thread(struct db_export *dbe, struct thread *thread, in db_export__thread()
[all …]
/linux-4.4.14/tools/perf/util/scripting-engines/
Dtrace-event-python.c63 struct db_export dbe;
514 static int python_export_evsel(struct db_export *dbe, struct perf_evsel *evsel) in python_export_evsel()
531 static int python_export_machine(struct db_export *dbe, in python_export_machine()
550 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread()
571 static int python_export_comm(struct db_export *dbe, struct comm *comm) in python_export_comm()
588 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread()
607 static int python_export_dso(struct db_export *dbe, struct dso *dso, in python_export_dso()
631 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol()
654 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_branch_type()
672 static int python_export_sample(struct db_export *dbe, in python_export_sample()
[all …]