Home | History | Annotate | Download | only in libutil++

Lines Matching full:nr_syms

529 	if (image_bfd_info && image_bfd_info->nr_syms == 0) {
548 nr_syms = nr_mini_syms + nr_synth_syms;
549 syms.reset(new asymbol *[nr_syms + 1]);
562 syms[nr_syms] = NULL;
586 nr_syms = bfd_get_symtab_upper_bound(abfd);
589 << nr_syms << hex << endl;
591 nr_syms /= sizeof(asymbol *);
593 if (nr_syms < 1)
596 syms.reset(new asymbol *[nr_syms]);
598 nr_syms = bfd_canonicalize_symtab(abfd, syms.get());
601 translate_debuginfo_syms(syms.get(), nr_syms);
604 << nr_syms << hex << endl;