Lines Matching refs:dbe
103 struct db_export dbe; member
958 static int python_export_evsel(struct db_export *dbe, struct evsel *evsel) in python_export_evsel() argument
960 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
975 static int python_export_machine(struct db_export *dbe, in python_export_machine() argument
978 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
994 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread() argument
997 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread()
1015 static int python_export_comm(struct db_export *dbe, struct comm *comm, in python_export_comm() argument
1018 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm()
1036 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
1039 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm_thread()
1055 static int python_export_dso(struct db_export *dbe, struct dso *dso, in python_export_dso() argument
1058 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_dso()
1079 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol() argument
1082 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_symbol()
1102 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_branch_type() argument
1105 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_branch_type()
1120 static void python_export_sample_table(struct db_export *dbe, in python_export_sample_table() argument
1123 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample_table()
1158 static void python_export_synth(struct db_export *dbe, struct export_sample *es) in python_export_synth() argument
1160 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_synth()
1174 static int python_export_sample(struct db_export *dbe, in python_export_sample() argument
1177 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample()
1179 python_export_sample_table(dbe, es); in python_export_sample()
1182 python_export_synth(dbe, es); in python_export_sample()
1187 static int python_export_call_path(struct db_export *dbe, struct call_path *cp) in python_export_call_path() argument
1189 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_path()
1210 static int python_export_call_return(struct db_export *dbe, in python_export_call_return() argument
1213 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_return()
1241 static int python_export_context_switch(struct db_export *dbe, u64 db_id, in python_export_context_switch() argument
1247 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_context_switch()
1272 struct db_export *dbe = data; in python_process_call_return() local
1274 return db_export__call_return(dbe, cr, parent_db_id); in python_process_call_return()
1326 db_export__sample(&tables->dbe, event, sample, evsel, al); in python_process_event()
1339 db_export__switch(&tables->dbe, event, sample, machine); in python_process_switch()
1465 tables->dbe.export_ ## name = python_export_ ## name; \
1482 if (db_export__init(&tables->dbe)) in set_table_handlers()
1496 tables->dbe.crp = NULL; in set_table_handlers()
1506 tables->dbe.crp = in set_table_handlers()
1508 &tables->dbe); in set_table_handlers()
1509 if (!tables->dbe.crp) in set_table_handlers()
1514 tables->dbe.cpr = NULL; in set_table_handlers()
1531 if (tables->dbe.crp) in set_table_handlers()
1532 tables->dbe.cpr = tables->dbe.crp->cpr; in set_table_handlers()
1534 tables->dbe.cpr = call_path_root__new(); in set_table_handlers()
1536 if (!tables->dbe.cpr) in set_table_handlers()
1650 err = db_export__branch_types(&tables->dbe); in python_start_script()
1679 db_export__exit(&tables->dbe); in python_stop_script()