Lines Matching defs:thread
22 #include "thread.h"
533 struct map *thread__find_map(struct thread *thread, u8 cpumode, u64 addr,
536 struct maps *maps = thread->maps;
541 al->thread = thread;
598 struct map *thread__find_map_fb(struct thread *thread, u8 cpumode, u64 addr,
601 struct map *map = thread__find_map(thread, cpumode, addr, al);
602 struct machine *machine = thread->maps->machine;
608 return thread__find_map(thread, addr_cpumode, addr, al);
611 struct symbol *thread__find_symbol(struct thread *thread, u8 cpumode,
615 if (thread__find_map(thread, cpumode, addr, al))
620 struct symbol *thread__find_symbol_fb(struct thread *thread, u8 cpumode,
624 if (thread__find_map_fb(thread, cpumode, addr, al))
630 * Callers need to drop the reference to al->thread, obtained in
636 struct thread *thread = machine__findnew_thread(machine, sample->pid,
639 if (thread == NULL)
642 dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread->tid);
643 thread__find_map(thread, sample->cpumode, sample->ip, al);
648 if (thread__is_filtered(thread))
710 thread__zput(al->thread);
734 void thread__resolve(struct thread *thread, struct addr_location *al,
737 thread__find_map_fb(thread, sample->cpumode, sample->addr, al);