Home | History | Annotate | Download | only in libdw

Lines Matching refs:lines

92   /* If there are a large number of lines don't blow up the stack.
734 Dwarf_Lines *lines = buf;
735 lines->nlines = nlinelist;
738 lines->info[i] = sortlines[i]->line;
739 lines->info[i].files = files;
746 lines->info[nlinelist - 1].end_sequence = 1;
750 *linesp = lines;
805 &node->lines, &node->files) != 0)
819 *linesp = (*found)->lines;
839 dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines)
848 if (cu->lines == NULL)
851 cu->lines = (void *) -1l;
868 cu->address_size, &cu->lines, &cu->files) < 0)
871 else if (cu->lines == (void *) -1l)
874 *lines = cu->lines;
875 *nlines = cu->lines->nlines;