Home
last modified time | relevance | path

Searched refs:dso_type (Results 1 – 7 of 7) sorted by relevance

/linux/tools/perf/util/
H A Dvdso.c143 enum dso_type dso_type; member
154 args->dso_type = dso__type(dso, args->machine); in machine__thread_dso_type_maps_cb()
155 return (args->dso_type != DSO__TYPE_UNKNOWN) ? 1 : 0; in machine__thread_dso_type_maps_cb()
158 static enum dso_type machine__thread_dso_type(struct machine *machine, in machine__thread_dso_type()
163 .dso_type = DSO__TYPE_UNKNOWN, in machine__thread_dso_type()
168 return args.dso_type; in machine__thread_dso_type()
269 enum dso_type dso_type; in __machine__findnew_vdso_compat() local
271 dso_type = machine__thread_dso_type(machine, thread); in __machine__findnew_vdso_compat()
274 if (dso_type == DSO__TYPE_32BIT) in __machine__findnew_vdso_compat()
278 if (dso_type == DSO__TYPE_X32BIT) in __machine__findnew_vdso_compat()
[all …]
H A Dunwind-libunwind.c18 enum dso_type dso_type; in unwind__prepare_access() local
39 dso_type = dso__type(dso, machine); in unwind__prepare_access()
40 if (dso_type == DSO__TYPE_UNKNOWN) in unwind__prepare_access()
46 if (dso_type != DSO__TYPE_64BIT) in unwind__prepare_access()
49 if (dso_type == DSO__TYPE_64BIT) in unwind__prepare_access()
H A Ddso.h72 enum dso_type { enum
778 const char *short_name, int dso_type);
818 enum dso_type dso__type(struct dso *dso, struct machine *machine);
H A Ddso.c1247 const char *short_name, int dso_type) in machine__findnew_kernel() argument
1260 dso__set_kernel(dso, dso_type); in machine__findnew_kernel()
1609 enum dso_type dso__type(struct dso *dso, struct machine *machine) in dso__type()
1612 enum dso_type type = DSO__TYPE_UNKNOWN; in dso__type()
H A Dsymbol-elf.c1912 enum dso_type dso__type_fd(int fd)
1914 enum dso_type dso_type = DSO__TYPE_UNKNOWN; in dso__type_fd()
1928 dso_type = DSO__TYPE_64BIT; in dso__type_fd()
1936 dso_type = DSO__TYPE_X32BIT; in dso__type_fd()
1938 dso_type = DSO__TYPE_32BIT; in dso__type_fd()
1942 return dso_type; in dso__type_fd()
1915 enum dso_type dso_type = DSO__TYPE_UNKNOWN; dso__type_fd() local
H A Dsymbol.h141 enum dso_type dso__type_fd(int fd);
H A Dsymbol-minimal.c320 enum dso_type dso__type_fd(int fd) in dso__type_fd()