Symbol: dso_type
tools/perf/util/dso.c
1458
const char *short_name, int dso_type)
tools/perf/util/dso.c
1471
dso__set_kernel(dso, dso_type);
tools/perf/util/dso.c
1855
enum dso_type dso__type(struct dso *dso, struct machine *machine)
tools/perf/util/dso.c
1858
enum dso_type type = DSO__TYPE_UNKNOWN;
tools/perf/util/dso.h
893
const char *short_name, int dso_type);
tools/perf/util/dso.h
935
enum dso_type dso__type(struct dso *dso, struct machine *machine);
tools/perf/util/symbol-elf.c
1915
enum dso_type dso__type_fd(int fd)
tools/perf/util/symbol-elf.c
1917
enum dso_type dso_type = DSO__TYPE_UNKNOWN;
tools/perf/util/symbol-elf.c
1931
dso_type = DSO__TYPE_64BIT;
tools/perf/util/symbol-elf.c
1939
dso_type = DSO__TYPE_X32BIT;
tools/perf/util/symbol-elf.c
1941
dso_type = DSO__TYPE_32BIT;
tools/perf/util/symbol-elf.c
1945
return dso_type;
tools/perf/util/symbol-minimal.c
312
enum dso_type dso__type_fd(int fd)
tools/perf/util/symbol.h
209
enum dso_type dso__type_fd(int fd);
tools/perf/util/vdso.c
143
enum dso_type dso_type;
tools/perf/util/vdso.c
154
args->dso_type = dso__type(dso, args->machine);
tools/perf/util/vdso.c
155
return (args->dso_type != DSO__TYPE_UNKNOWN) ? 1 : 0;
tools/perf/util/vdso.c
158
static enum dso_type machine__thread_dso_type(struct machine *machine,
tools/perf/util/vdso.c
163
.dso_type = DSO__TYPE_UNKNOWN,
tools/perf/util/vdso.c
168
return args.dso_type;
tools/perf/util/vdso.c
269
enum dso_type dso_type;
tools/perf/util/vdso.c
271
dso_type = machine__thread_dso_type(machine, thread);
tools/perf/util/vdso.c
274
if (dso_type == DSO__TYPE_32BIT)
tools/perf/util/vdso.c
278
if (dso_type == DSO__TYPE_X32BIT)
tools/perf/util/vdso.c
282
switch (dso_type) {
tools/perf/util/vdso.c
302
enum dso_type dso_type;
tools/perf/util/vdso.c
304
dso_type = machine__thread_dso_type(machine, thread);
tools/perf/util/vdso.c
305
switch (dso_type) {
tools/perf/util/vdso.c
311
if (dso && dso_type != dso__type(dso, machine)) {