• Home
  • Raw
  • Download

Lines Matching refs:alf

934 			struct addr_location alf, alt;  in perf_sample__fprintf_brstack()  local
936 addr_location__init(&alf); in perf_sample__fprintf_brstack()
938 thread__find_map_fb(thread, sample->cpumode, from, &alf); in perf_sample__fprintf_brstack()
941 printed += map__fprintf_dsoname_dsoff(alf.map, PRINT_FIELD(DSOFF), alf.addr, fp); in perf_sample__fprintf_brstack()
945 addr_location__exit(&alf); in perf_sample__fprintf_brstack()
968 struct addr_location alf, alt; in perf_sample__fprintf_brstacksym() local
970 addr_location__init(&alf); in perf_sample__fprintf_brstacksym()
975 thread__find_symbol_fb(thread, sample->cpumode, from, &alf); in perf_sample__fprintf_brstacksym()
978 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp); in perf_sample__fprintf_brstacksym()
980 printed += map__fprintf_dsoname_dsoff(alf.map, PRINT_FIELD(DSOFF), alf.addr, fp); in perf_sample__fprintf_brstacksym()
987 addr_location__exit(&alf); in perf_sample__fprintf_brstacksym()
1006 struct addr_location alf, alt; in perf_sample__fprintf_brstackoff() local
1008 addr_location__init(&alf); in perf_sample__fprintf_brstackoff()
1013 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) && in perf_sample__fprintf_brstackoff()
1014 !map__dso(alf.map)->adjust_symbols) in perf_sample__fprintf_brstackoff()
1015 from = map__dso_map_ip(alf.map, from); in perf_sample__fprintf_brstackoff()
1023 printed += map__fprintf_dsoname_dsoff(alf.map, PRINT_FIELD(DSOFF), alf.addr, fp); in perf_sample__fprintf_brstackoff()
1029 addr_location__exit(&alf); in perf_sample__fprintf_brstackoff()