Home | History | Annotate | Download | only in libdw

Lines Matching defs:cu

1 /* Return line number information of CU.
72 struct Dwarf_CU *const cu = cudie->cu;
73 if (cu->lines == NULL)
76 cu->lines = (void *) -1l;
77 cu->files = (void *) -1l;
90 Dwarf *dbg = cu->dbg;
381 address size field from the CU header. */
382 if (cu->address_size == 4)
581 /* Make the file data structure available through the CU. */
582 cu->files = files;
584 cu->lines = libdw_alloc (dbg, Dwarf_Lines, (sizeof (Dwarf_Lines)
587 cu->lines->nlines = nlinelist;
590 cu->lines->info[nlinelist] = linelist->line;
591 cu
599 else if (cu->lines != (void *) -1l)
605 *lines = cu->lines;
606 *nlines = cu->lines->nlines;