Symbol: thread__find_map
tools/perf/builtin-inject.c
1019
if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
tools/perf/builtin-script.c
1136
if (!thread__find_map(thread, *cpumode, start, &al) || (dso = map__dso(al.map)) == NULL) {
tools/perf/builtin-script.c
1211
thread__find_map(thread, cpumode, addr, &al);
tools/perf/builtin-script.c
1266
thread__find_map(thread, x->cpumode, ip, &al);
tools/perf/builtin-script.c
1318
thread__find_map(thread, cpumode, addr, &al);
tools/perf/tests/code-reading.c
396
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/build-id.c
72
if (thread__find_map(thread, sample->cpumode, sample->ip, &al))
tools/perf/util/cs-etm.c
1126
if (!thread__find_map(tidq->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
3636
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
2199
thread__find_map(thread, *cpumode, ip, &al);
tools/perf/util/thread.c
445
thread__find_map(thread, cpumodes[i], addr, al);
tools/perf/util/thread.c
577
if (!thread__find_map(thread, cpumode, ip, &al)) {
tools/perf/util/thread.h
122
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-local.c
439
thread__find_map(ui->thread, PERF_RECORD_MISC_USER, ip, &al);