Lines Matching refs:al
1901 struct addr_location *al, in print_location() argument
1905 if ((verbose || print_dso) && al->map) in print_location()
1906 fprintf(f, "%s@", al->map->dso->long_name); in print_location()
1908 if ((verbose || print_sym) && al->sym) in print_location()
1909 fprintf(f, "%s+0x%" PRIx64, al->sym->name, in print_location()
1910 al->addr - al->sym->start); in print_location()
1911 else if (al->map) in print_location()
1912 fprintf(f, "0x%" PRIx64, al->addr); in print_location()
1924 struct addr_location al; in trace__pgfault() local
1942 sample->ip, &al); in trace__pgfault()
1950 print_location(trace->output, sample, &al, false, true); in trace__pgfault()
1955 sample->addr, &al); in trace__pgfault()
1957 if (!al.map) { in trace__pgfault()
1959 MAP__FUNCTION, sample->addr, &al); in trace__pgfault()
1961 if (al.map) in trace__pgfault()
1967 print_location(trace->output, sample, &al, true, false); in trace__pgfault()
1969 fprintf(trace->output, " (%c%c)\n", map_type, al.level); in trace__pgfault()