Lines Matching refs:alf
992 struct addr_location alf, alt; in perf_sample__fprintf_brstack() local
994 addr_location__init(&alf); in perf_sample__fprintf_brstack()
996 thread__find_map_fb(thread, sample->cpumode, from, &alf); in perf_sample__fprintf_brstack()
999 printed += map__fprintf_dsoname_dsoff(alf.map, PRINT_FIELD(DSOFF), alf.addr, fp); in perf_sample__fprintf_brstack()
1003 addr_location__exit(&alf); in perf_sample__fprintf_brstack()
1026 struct addr_location alf, alt; in perf_sample__fprintf_brstacksym() local
1028 addr_location__init(&alf); in perf_sample__fprintf_brstacksym()
1033 thread__find_symbol_fb(thread, sample->cpumode, from, &alf); in perf_sample__fprintf_brstacksym()
1036 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp); in perf_sample__fprintf_brstacksym()
1038 printed += map__fprintf_dsoname_dsoff(alf.map, PRINT_FIELD(DSOFF), alf.addr, fp); in perf_sample__fprintf_brstacksym()
1045 addr_location__exit(&alf); in perf_sample__fprintf_brstacksym()
1064 struct addr_location alf, alt; in perf_sample__fprintf_brstackoff() local
1066 addr_location__init(&alf); in perf_sample__fprintf_brstackoff()
1071 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) && in perf_sample__fprintf_brstackoff()
1072 !dso__adjust_symbols(map__dso(alf.map))) in perf_sample__fprintf_brstackoff()
1073 from = map__dso_map_ip(alf.map, from); in perf_sample__fprintf_brstackoff()
1081 printed += map__fprintf_dsoname_dsoff(alf.map, PRINT_FIELD(DSOFF), alf.addr, fp); in perf_sample__fprintf_brstackoff()
1087 addr_location__exit(&alf); in perf_sample__fprintf_brstackoff()