Home | History | Annotate | Download | only in util

Lines Matching refs:lines

613 /* Walk on lines
653 * die_walk_lines - Walk on lines inside given DIE
658 * Walk on all lines inside given @rt_die and call @callback on each line.
659 * If the @rt_die is a function, walk only on the lines inside the function,
666 Dwarf_Lines *lines;
684 /* Get lines list in the CU */
685 if (dwarf_getsrclines(cu_die, &lines, &nlines) != 0) {
686 pr_debug2("Failed to get source lines on this CU.\n");
689 pr_debug2("Get %zd lines from this CU\n", nlines);
691 /* Walk on the lines on lines list */
693 line = dwarf_onesrcline(lines, i);
701 /* Filter lines based on address */
720 * Dwarf lines doesn't include function declarations and inlined
726 * inlined functions don't have lines of the specified DIE.