Lines Matching refs:al
26 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument
35 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module()
37 if (al->map) in __report_module()
38 dso = al->map->dso; in __report_module()
48 if (s != al->map->start) in __report_module()
54 (dso->symsrc_filename ? dso->symsrc_filename : dso->long_name), -1, al->map->start, in __report_module()
62 struct addr_location al; in report_module() local
64 return __report_module(&al, ip, ui); in report_module()
75 struct addr_location al; in entry() local
77 if (__report_module(&al, ip, ui)) in entry()
81 e->map = al.map; in entry()
82 e->sym = al.sym; in entry()
85 al.sym ? al.sym->name : "''", in entry()
87 al.map ? al.map->map_ip(al.map, ip) : (u64) 0); in entry()
104 struct addr_location al; in access_dso_mem() local
107 if (!thread__find_map(ui->thread, PERF_RECORD_MISC_USER, addr, &al)) { in access_dso_mem()
112 if (!al.map->dso) in access_dso_mem()
115 size = dso__data_read_addr(al.map->dso, al.map, ui->machine, in access_dso_mem()