• Home
  • Raw
  • Download

Lines Matching refs:al

1723 	struct addr_location al;  in ip__resolve_ams()  local
1725 memset(&al, 0, sizeof(al)); in ip__resolve_ams()
1733 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al); in ip__resolve_ams()
1736 ams->al_addr = al.addr; in ip__resolve_ams()
1737 ams->sym = al.sym; in ip__resolve_ams()
1738 ams->map = al.map; in ip__resolve_ams()
1746 struct addr_location al; in ip__resolve_data() local
1748 memset(&al, 0, sizeof(al)); in ip__resolve_data()
1750 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al); in ip__resolve_data()
1751 if (al.map == NULL) { in ip__resolve_data()
1757 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al); in ip__resolve_data()
1761 ams->al_addr = al.addr; in ip__resolve_data()
1762 ams->sym = al.sym; in ip__resolve_data()
1763 ams->map = al.map; in ip__resolve_data()
1768 struct addr_location *al) in sample__resolve_mem() argument
1775 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip); in sample__resolve_mem()
1776 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, in sample__resolve_mem()
1799 struct addr_location al; in add_callchain_ip() local
1803 al.filtered = 0; in add_callchain_ip()
1804 al.sym = NULL; in add_callchain_ip()
1807 ip, &al); in add_callchain_ip()
1833 ip, &al); in add_callchain_ip()
1836 if (al.sym != NULL) { in add_callchain_ip()
1838 symbol__match_regex(al.sym, &parent_regex)) in add_callchain_ip()
1839 *parent = al.sym; in add_callchain_ip()
1841 symbol__match_regex(al.sym, &ignore_callees_regex)) { in add_callchain_ip()
1844 *root_al = al; in add_callchain_ip()
1849 if (symbol_conf.hide_unresolved && al.sym == NULL) in add_callchain_ip()
1857 return callchain_cursor_append(cursor, al.addr, al.map, al.sym, in add_callchain_ip()
1863 struct addr_location *al) in sample__resolve_bstack() argument
1873 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to); in sample__resolve_bstack()
1874 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from); in sample__resolve_bstack()