Symbol: thread__find_map
tools/perf/builtin-inject.c
1166
if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
tools/perf/builtin-script.c
1140
if (!thread__find_map(thread, *cpumode, start, &al) || (dso = map__dso(al.map)) == NULL) {
tools/perf/builtin-script.c
1215
thread__find_map(thread, cpumode, addr, &al);
tools/perf/builtin-script.c
1270
thread__find_map(thread, x->cpumode, ip, &al);
tools/perf/builtin-script.c
1330
thread__find_map(thread, cpumode, addr, &al);
tools/perf/tests/code-reading.c
397
if (!thread__find_map(thread, cpumode, addr, &al) || !map__dso(al.map)) {
tools/perf/tests/mmap-thread-lookup.c
198
thread__find_map(thread, PERF_RECORD_MISC_USER,
tools/perf/util/aslr.c
156
if (!thread__find_map(aslr_thread, cpumode, addr, &al)) {
tools/perf/util/aslr.c
170
if (!thread__find_map(aslr_thread, effective_cpumode, addr, &al)) {
tools/perf/util/aslr.c
287
if (thread__find_map(aslr_thread, cpumode, start, &al)) {
tools/perf/util/aslr.c
344
if (thread__find_map(aslr_thread, cpumode, start - 1, &prev_al)) {
tools/perf/util/build-id.c
72
if (thread__find_map(thread, sample->cpumode, sample->ip, &al))
tools/perf/util/cs-etm.c
1138
if (!thread__find_map(thread, cpumode, address, &al))
tools/perf/util/debug.c
342
if (thread && thread__find_map(thread, PERF_RECORD_MISC_USER, addr, &al)) {
tools/perf/util/event.c
760
struct map *map = thread__find_map(thread, cpumode, addr, al);
tools/perf/util/event.c
767
return thread__find_map(thread, addr_cpumode, addr, al);
tools/perf/util/event.c
774
if (thread__find_map(thread, cpumode, addr, al))
tools/perf/util/event.c
819
thread__find_map(thread, sample->cpumode, sample->ip, al);
tools/perf/util/intel-pt.c
1010
if (!thread__find_map(thread, cpumode, ip, &al) || !map__dso(al.map))
tools/perf/util/intel-pt.c
3657
if (!thread__find_map(thread, cpumode, addr, al))
tools/perf/util/intel-pt.c
815
if (!thread__find_map(thread, cpumode, *ip, &al) || !map__dso(al.map)) {
tools/perf/util/machine.c
2242
thread__find_map(thread, *cpumode, ip, &al);
tools/perf/util/thread.c
431
thread__find_map(thread, cpumodes[i], addr, al);
tools/perf/util/thread.c
592
if (!thread__find_map(thread, cpumode, ip, &al)) {
tools/perf/util/thread.h
127
struct map *thread__find_map(struct thread *thread, u8 cpumode, u64 addr,
tools/perf/util/unwind-libdw.c
194
if (!thread__find_map(ui->thread, PERF_RECORD_MISC_USER, addr, &al)) {
tools/perf/util/unwind-libunwind.c
354
thread__find_map(ui->thread, PERF_RECORD_MISC_USER, ip, &al);