Lines Matching refs:al
43 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument
52 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module()
54 if (al->map) in __report_module()
55 dso = al->map->dso; in __report_module()
65 if (s != al->map->start - al->map->pgoff) in __report_module()
71 al->map->start - al->map->pgoff, false); in __report_module()
77 al->map->start - al->map->pgoff, false); in __report_module()
92 struct addr_location al; in report_module() local
94 return __report_module(&al, ip, ui); in report_module()
105 struct addr_location al; in entry() local
107 if (__report_module(&al, ip, ui)) in entry()
111 e->ms.maps = al.maps; in entry()
112 e->ms.map = al.map; in entry()
113 e->ms.sym = al.sym; in entry()
116 al.sym ? al.sym->name : "''", in entry()
118 al.map ? al.map->map_ip(al.map, ip) : (u64) 0); in entry()
135 struct addr_location al; in access_dso_mem() local
138 if (!thread__find_map(ui->thread, PERF_RECORD_MISC_USER, addr, &al)) { in access_dso_mem()
143 if (!al.map->dso) in access_dso_mem()
146 size = dso__data_read_addr(al.map->dso, al.map, ui->machine, in access_dso_mem()