Home | History | Annotate | Download | only in binutils

Lines Matching refs:sec

338       bfd_mach_o_section *sec;
354 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
357 sec->segname, sec->sectname);
358 printf_vma (sec->addr);
360 printf_vma (sec->size);
361 printf (" %08lx\n", sec->flags);
367 dump_section_header (bfd *abfd ATTRIBUTE_UNUSED, bfd_mach_o_section *sec)
370 sec->sectname, sec->segname, sec->bfdsection->name);
372 printf_vma (sec->addr);
374 printf_vma (sec->size);
376 printf_vma (sec->offset);
378 printf (" align: %ld", sec->align);
379 printf (" nreloc: %lu reloff: ", sec->nreloc);
380 printf_vma (sec->reloff);
382 printf (" flags: %08lx (type: %s", sec->flags,
384 sec->flags & BFD_MACH_O_SECTION_TYPE_MASK));
387 sec->flags & BFD_MACH_O_SECTION_ATTRIBUTES_MASK);
389 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
394 printf (" first indirect sym: %lu", sec->reserved1);
396 bfd_mach_o_section_get_nbr_indirect (abfd, sec));
399 printf (" reserved1: 0x%lx", sec->reserved1);
402 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
405 printf (" stub size: %lu", sec->reserved2);
408 printf (" reserved2: 0x%lx", sec->reserved2);
411 printf (" reserved3: 0x%lx\n", sec->reserved3);
418 bfd_mach_o_section *sec;
440 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
441 dump_section_header (abfd, sec);
576 bfd_mach_o_section *sec = mdata->sections[i];
582 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
587 first = sec->reserved1;
588 last = first + bfd_mach_o_section_get_nbr_indirect (abfd, sec);
589 addr = sec->addr;
590 entry_size = bfd_mach_o_section_get_entry_size (abfd, sec);
592 sec->segname, sec->sectname);
2148 bfd_mach_o_section *sec;
2149 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
2150 if (strcmp (sec->segname, segname) == 0
2151 && strcmp (sec->sectname, sectname) == 0)
2154 asection *bfdsec = sec->bfdsection;