Home
last modified time | relevance | path

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

/Linux-v5.10/tools/perf/util/
Dvdso.c141 static enum dso_type machine__thread_dso_type(struct machine *machine, in machine__thread_dso_type()
144 enum dso_type dso_type = DSO__TYPE_UNKNOWN; in machine__thread_dso_type() local
151 dso_type = dso__type(dso, machine); in machine__thread_dso_type()
152 if (dso_type != DSO__TYPE_UNKNOWN) in machine__thread_dso_type()
156 return dso_type; in machine__thread_dso_type()
259 enum dso_type dso_type; in __machine__findnew_vdso_compat() local
261 dso_type = machine__thread_dso_type(machine, thread); in __machine__findnew_vdso_compat()
264 if (dso_type == DSO__TYPE_32BIT) in __machine__findnew_vdso_compat()
268 if (dso_type == DSO__TYPE_X32BIT) in __machine__findnew_vdso_compat()
272 switch (dso_type) { in __machine__findnew_vdso_compat()
[all …]
Dunwind-libunwind.c23 enum dso_type dso_type; in unwind__prepare_access() local
42 dso_type = dso__type(map->dso, maps->machine); in unwind__prepare_access()
43 if (dso_type == DSO__TYPE_UNKNOWN) in unwind__prepare_access()
49 if (dso_type != DSO__TYPE_64BIT) in unwind__prepare_access()
52 if (dso_type == DSO__TYPE_64BIT) in unwind__prepare_access()
Ddso.h71 enum dso_type { enum
361 const char *short_name, int dso_type);
387 enum dso_type dso__type(struct dso *dso, struct machine *machine);
Ddso.c1151 const char *short_name, int dso_type) in machine__findnew_kernel() argument
1164 dso->kernel = dso_type; in machine__findnew_kernel()
1398 enum dso_type dso__type(struct dso *dso, struct machine *machine) in dso__type()
1401 enum dso_type type = DSO__TYPE_UNKNOWN; in dso__type()
Dsymbol-elf.c1314 enum dso_type dso__type_fd(int fd) in dso__type_fd()
1316 enum dso_type dso_type = DSO__TYPE_UNKNOWN; in dso__type_fd() local
1330 dso_type = DSO__TYPE_64BIT; in dso__type_fd()
1338 dso_type = DSO__TYPE_X32BIT; in dso__type_fd()
1340 dso_type = DSO__TYPE_32BIT; in dso__type_fd()
1344 return dso_type; in dso__type_fd()
Dsymbol.h146 enum dso_type dso__type_fd(int fd);
Dsymbol-minimal.c318 enum dso_type dso__type_fd(int fd) in dso__type_fd()