Lines Matching defs:dso
13 #include "util/dso.h"
27 const struct dso *dso = map__dso(map);
31 if (dso->has_build_id)
32 build_id__sprintf(&dso->bid, bid_buf);
34 if (dso->long_name != NULL) {
35 printf(" %s", dso->long_name);
36 } else if (dso->short_name != NULL) {
37 printf(" %s", dso->short_name);
77 static bool dso__skip_buildid(struct dso *dso, int with_hits)
79 return with_hits && !dso->hit;