Lines Matching refs:dbe
101 struct db_export dbe; member
949 static int python_export_evsel(struct db_export *dbe, struct perf_evsel *evsel) in python_export_evsel() argument
951 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_evsel()
966 static int python_export_machine(struct db_export *dbe, in python_export_machine() argument
969 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_machine()
985 static int python_export_thread(struct db_export *dbe, struct thread *thread, in python_export_thread() argument
988 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_thread()
1006 static int python_export_comm(struct db_export *dbe, struct comm *comm) in python_export_comm() argument
1008 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm()
1023 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
1026 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_comm_thread()
1042 static int python_export_dso(struct db_export *dbe, struct dso *dso, in python_export_dso() argument
1045 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_dso()
1066 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol() argument
1069 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_symbol()
1089 static int python_export_branch_type(struct db_export *dbe, u32 branch_type, in python_export_branch_type() argument
1092 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_branch_type()
1107 static int python_export_sample(struct db_export *dbe, in python_export_sample() argument
1110 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_sample()
1145 static int python_export_call_path(struct db_export *dbe, struct call_path *cp) in python_export_call_path() argument
1147 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_path()
1168 static int python_export_call_return(struct db_export *dbe, in python_export_call_return() argument
1171 struct tables *tables = container_of(dbe, struct tables, dbe); in python_export_call_return()
1198 struct db_export *dbe = data; in python_process_call_return() local
1200 return db_export__call_return(dbe, cr); in python_process_call_return()
1252 db_export__sample(&tables->dbe, event, sample, evsel, al); in python_process_event()
1381 tables->dbe.export_ ## name = python_export_ ## name; \
1398 if (db_export__init(&tables->dbe)) in set_table_handlers()
1412 tables->dbe.crp = NULL; in set_table_handlers()
1422 tables->dbe.crp = in set_table_handlers()
1424 &tables->dbe); in set_table_handlers()
1425 if (!tables->dbe.crp) in set_table_handlers()
1430 tables->dbe.cpr = NULL; in set_table_handlers()
1447 if (tables->dbe.crp) in set_table_handlers()
1448 tables->dbe.cpr = tables->dbe.crp->cpr; in set_table_handlers()
1450 tables->dbe.cpr = call_path_root__new(); in set_table_handlers()
1452 if (!tables->dbe.cpr) in set_table_handlers()
1551 err = db_export__branch_types(&tables->dbe); in python_start_script()
1570 return db_export__flush(&tables->dbe); in python_flush_script()
1582 db_export__exit(&tables->dbe); in python_stop_script()