Lines Matching refs:al
2203 struct addr_location *al, in print_location() argument
2207 if ((verbose || print_dso) && al->map) in print_location()
2208 fprintf(f, "%s@", al->map->dso->long_name); in print_location()
2210 if ((verbose || print_sym) && al->sym) in print_location()
2211 fprintf(f, "%s+0x%" PRIx64, al->sym->name, in print_location()
2212 al->addr - al->sym->start); in print_location()
2213 else if (al->map) in print_location()
2214 fprintf(f, "0x%" PRIx64, al->addr); in print_location()
2226 struct addr_location al; in trace__pgfault() local
2245 sample->ip, &al); in trace__pgfault()
2253 print_location(trace->output, sample, &al, false, true); in trace__pgfault()
2258 sample->addr, &al); in trace__pgfault()
2260 if (!al.map) { in trace__pgfault()
2262 MAP__FUNCTION, sample->addr, &al); in trace__pgfault()
2264 if (al.map) in trace__pgfault()
2270 print_location(trace->output, sample, &al, true, false); in trace__pgfault()
2272 fprintf(trace->output, " (%c%c)\n", map_type, al.level); in trace__pgfault()