Lines Matching refs:al
122 u64 ip, struct addr_location *al) in output_sample_callchain_entry() argument
130 if (al && al->sym && al->sym->namelen) { in output_sample_callchain_entry()
131 struct dso *dso = al->map ? map__dso(al->map) : NULL; in output_sample_callchain_entry()
134 output_json_key_string(out, false, 5, "symbol", al->sym->name); in output_sample_callchain_entry()
157 struct addr_location al; in process_sample_event() local
161 addr_location__init(&al); in process_sample_event()
162 if (machine__resolve(machine, &al, sample) < 0) { in process_sample_event()
164 addr_location__exit(&al); in process_sample_event()
177 output_json_key_format(out, true, 3, "pid", "%i", thread__pid(al.thread)); in process_sample_event()
178 output_json_key_format(out, true, 3, "tid", "%i", thread__tid(al.thread)); in process_sample_event()
182 else if (thread__cpu(al.thread) >= 0) in process_sample_event()
183 output_json_key_format(out, true, 3, "cpu", "%i", thread__cpu(al.thread)); in process_sample_event()
185 output_json_key_string(out, true, 3, "comm", thread__comm_str(al.thread)); in process_sample_event()
222 ok = thread__find_symbol(al.thread, cpumode, ip, &tal); in process_sample_event()
227 output_sample_callchain_entry(tool, sample->ip, &al); in process_sample_event()
253 addr_location__exit(&al); in process_sample_event()