Lines Matching refs:line
182 # Pass it to addr2line to get filename and line number
200 # Strip out the base of the path on each line
201 code=$(while read -r line; do echo "${line#$basepath/}"; done <<< "$code")
203 # In the case of inlines, move everything to same line
212 # Replace old address with pretty line numbers
304 # Add up the line number to the symbol
308 while read line; do
309 # Let's see if we have an address in the line
310 if [[ $line =~ \[\<([^]]+)\>\] ]] ||
311 [[ $line =~ [^+\ ]+\+0x[0-9a-f]+/0x[0-9a-f]+ ]]; then
312 # Translate address to line numbers
313 handle_line "$line"
314 # Is it a code line?
315 elif [[ $line == *Code:* ]]; then
316 decode_code "$line"
317 # Is it a version line?
318 elif [[ -n $debuginfod && $line =~ PID:\ [0-9]+\ Comm: ]]; then
319 debuginfod_get_vmlinux "$line"
321 # Nothing special in this line, show it as is
322 echo "$line"