Lines Matching defs:dbe

103 	struct db_export	dbe;
979 static int python_export_evsel(struct db_export *dbe, struct evsel *evsel)
981 struct tables *tables = container_of(dbe, struct tables, dbe);
996 static int python_export_machine(struct db_export *dbe,
999 struct tables *tables = container_of(dbe, struct tables, dbe);
1015 static int python_export_thread(struct db_export *dbe, struct thread *thread,
1018 struct tables *tables = container_of(dbe, struct tables, dbe);
1036 static int python_export_comm(struct db_export *dbe, struct comm *comm,
1039 struct tables *tables = container_of(dbe, struct tables, dbe);
1057 static int python_export_comm_thread(struct db_export *dbe, u64 db_id,
1060 struct tables *tables = container_of(dbe, struct tables, dbe);
1076 static int python_export_dso(struct db_export *dbe, struct dso *dso,
1079 struct tables *tables = container_of(dbe, struct tables, dbe);
1100 static int python_export_symbol(struct db_export *dbe, struct symbol *sym,
1103 struct tables *tables = container_of(dbe, struct tables, dbe);
1123 static int python_export_branch_type(struct db_export *dbe, u32 branch_type,
1126 struct tables *tables = container_of(dbe, struct tables, dbe);
1141 static void python_export_sample_table(struct db_export *dbe,
1144 struct tables *tables = container_of(dbe, struct tables, dbe);
1179 static void python_export_synth(struct db_export *dbe, struct export_sample *es)
1181 struct tables *tables = container_of(dbe, struct tables, dbe);
1195 static int python_export_sample(struct db_export *dbe,
1198 struct tables *tables = container_of(dbe, struct tables, dbe);
1200 python_export_sample_table(dbe, es);
1203 python_export_synth(dbe, es);
1208 static int python_export_call_path(struct db_export *dbe, struct call_path *cp)
1210 struct tables *tables = container_of(dbe, struct tables, dbe);
1231 static int python_export_call_return(struct db_export *dbe,
1234 struct tables *tables = container_of(dbe, struct tables, dbe);
1262 static int python_export_context_switch(struct db_export *dbe, u64 db_id,
1268 struct tables *tables = container_of(dbe, struct tables, dbe);
1293 struct db_export *dbe = data;
1295 return db_export__call_return(dbe, cr, parent_db_id);
1347 db_export__sample(&tables->dbe, event, sample, evsel, al);
1360 db_export__switch(&tables->dbe, event, sample, machine);
1486 tables->dbe.export_ ## name = python_export_ ## name; \
1503 if (db_export__init(&tables->dbe))
1517 tables->dbe.crp = NULL;
1527 tables->dbe.crp =
1529 &tables->dbe);
1530 if (!tables->dbe.crp)
1535 tables->dbe.cpr = NULL;
1552 if (tables->dbe.crp)
1553 tables->dbe.cpr = tables->dbe.crp->cpr;
1555 tables->dbe.cpr = call_path_root__new();
1557 if (!tables->dbe.cpr)
1668 err = db_export__branch_types(&tables->dbe);
1697 db_export__exit(&tables->dbe);