Lines Matching refs:al
1502 struct addr_location al; in ip__resolve_ams() local
1504 memset(&al, 0, sizeof(al)); in ip__resolve_ams()
1512 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al); in ip__resolve_ams()
1515 ams->al_addr = al.addr; in ip__resolve_ams()
1516 ams->sym = al.sym; in ip__resolve_ams()
1517 ams->map = al.map; in ip__resolve_ams()
1523 struct addr_location al; in ip__resolve_data() local
1525 memset(&al, 0, sizeof(al)); in ip__resolve_data()
1527 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al); in ip__resolve_data()
1528 if (al.map == NULL) { in ip__resolve_data()
1534 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al); in ip__resolve_data()
1538 ams->al_addr = al.addr; in ip__resolve_data()
1539 ams->sym = al.sym; in ip__resolve_data()
1540 ams->map = al.map; in ip__resolve_data()
1544 struct addr_location *al) in sample__resolve_mem() argument
1551 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip); in sample__resolve_mem()
1552 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr); in sample__resolve_mem()
1564 struct addr_location al; in add_callchain_ip() local
1566 al.filtered = 0; in add_callchain_ip()
1567 al.sym = NULL; in add_callchain_ip()
1570 ip, &al); in add_callchain_ip()
1596 ip, &al); in add_callchain_ip()
1599 if (al.sym != NULL) { in add_callchain_ip()
1601 symbol__match_regex(al.sym, &parent_regex)) in add_callchain_ip()
1602 *parent = al.sym; in add_callchain_ip()
1604 symbol__match_regex(al.sym, &ignore_callees_regex)) { in add_callchain_ip()
1607 *root_al = al; in add_callchain_ip()
1612 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym); in add_callchain_ip()
1616 struct addr_location *al) in sample__resolve_bstack() argument
1626 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to); in sample__resolve_bstack()
1627 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from); in sample__resolve_bstack()