Symbol: vdso_file
tools/perf/util/vdso.c
103
vdso_file->found = (vdso != NULL);
tools/perf/util/vdso.c
104
vdso_file->error = !vdso_file->found;
tools/perf/util/vdso.c
224
static const char *vdso__get_compat_file(struct vdso_file *vdso_file)
tools/perf/util/vdso.c
228
if (vdso_file->found)
tools/perf/util/vdso.c
229
return vdso_file->temp_file_name;
tools/perf/util/vdso.c
231
if (vdso_file->error)
tools/perf/util/vdso.c
234
err = vdso__create_compat_file(vdso_file->read_prog,
tools/perf/util/vdso.c
235
vdso_file->temp_file_name);
tools/perf/util/vdso.c
237
pr_err("%s failed, error %d\n", vdso_file->read_prog, err);
tools/perf/util/vdso.c
238
vdso_file->error = true;
tools/perf/util/vdso.c
242
vdso_file->found = true;
tools/perf/util/vdso.c
244
return vdso_file->temp_file_name;
tools/perf/util/vdso.c
248
struct vdso_file *vdso_file)
tools/perf/util/vdso.c
253
dso = dsos__find(&machine->dsos, vdso_file->dso_name, true);
tools/perf/util/vdso.c
257
file_name = vdso__get_compat_file(vdso_file);
tools/perf/util/vdso.c
261
return __machine__addnew_vdso(machine, vdso_file->dso_name, file_name);
tools/perf/util/vdso.c
40
struct vdso_file vdso;
tools/perf/util/vdso.c
42
struct vdso_file vdso32;
tools/perf/util/vdso.c
43
struct vdso_file vdsox32;
tools/perf/util/vdso.c
71
static char *get_file(struct vdso_file *vdso_file)
tools/perf/util/vdso.c
79
if (vdso_file->found)
tools/perf/util/vdso.c
80
return vdso_file->temp_file_name;
tools/perf/util/vdso.c
82
if (vdso_file->error || find_map(&start, &end, VDSO__MAP_NAME))
tools/perf/util/vdso.c
91
fd = mkstemp(vdso_file->temp_file_name);
tools/perf/util/vdso.c
96
vdso = vdso_file->temp_file_name;