Lines Matching refs:al
1353 struct addr_location al; in ip__resolve_ams() local
1355 memset(&al, 0, sizeof(al)); in ip__resolve_ams()
1363 thread__find_cpumode_addr_location(thread, MAP__FUNCTION, ip, &al); in ip__resolve_ams()
1366 ams->al_addr = al.addr; in ip__resolve_ams()
1367 ams->sym = al.sym; in ip__resolve_ams()
1368 ams->map = al.map; in ip__resolve_ams()
1374 struct addr_location al; in ip__resolve_data() local
1376 memset(&al, 0, sizeof(al)); in ip__resolve_data()
1378 thread__find_addr_location(thread, m, MAP__VARIABLE, addr, &al); in ip__resolve_data()
1379 if (al.map == NULL) { in ip__resolve_data()
1385 thread__find_addr_location(thread, m, MAP__FUNCTION, addr, &al); in ip__resolve_data()
1389 ams->al_addr = al.addr; in ip__resolve_data()
1390 ams->sym = al.sym; in ip__resolve_data()
1391 ams->map = al.map; in ip__resolve_data()
1395 struct addr_location *al) in sample__resolve_mem() argument
1402 ip__resolve_ams(al->thread, &mi->iaddr, sample->ip); in sample__resolve_mem()
1403 ip__resolve_data(al->thread, al->cpumode, &mi->daddr, sample->addr); in sample__resolve_mem()
1415 struct addr_location al; in add_callchain_ip() local
1417 al.filtered = 0; in add_callchain_ip()
1418 al.sym = NULL; in add_callchain_ip()
1421 ip, &al); in add_callchain_ip()
1447 ip, &al); in add_callchain_ip()
1450 if (al.sym != NULL) { in add_callchain_ip()
1452 symbol__match_regex(al.sym, &parent_regex)) in add_callchain_ip()
1453 *parent = al.sym; in add_callchain_ip()
1455 symbol__match_regex(al.sym, &ignore_callees_regex)) { in add_callchain_ip()
1458 *root_al = al; in add_callchain_ip()
1463 return callchain_cursor_append(&callchain_cursor, al.addr, al.map, al.sym); in add_callchain_ip()
1467 struct addr_location *al) in sample__resolve_bstack() argument
1477 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to); in sample__resolve_bstack()
1478 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from); in sample__resolve_bstack()