Home | History | Annotate | Download | only in bfd

Lines Matching defs:xlat

379   const mach_o_section_name_xlat *xlat;
388 xlat will be non-null if there is an entry for segname, secname. */
389 xlat = bfd_mach_o_section_data_for_mach_sect (abfd, segname, secname);
390 if (xlat)
392 len = strlen (xlat->bfd_name);
396 memcpy (res, xlat->bfd_name, len+1);
398 *flags = xlat->bfd_flags;
438 const mach_o_section_name_xlat *xlat;
450 xlat = bfd_mach_o_section_data_for_bfd_name (abfd, name, &segname);
451 if (xlat)
454 strcpy (section->sectname, xlat->mach_o_name);
455 return xlat;
3266 static const mach_o_section_name_xlat * xlat;
3278 xlat = bfd_mach_o_convert_section_name_to_mach_o (abfd, sec, s);
3279 if (xlat != NULL)
3281 s->flags = xlat->macho_sectype | xlat->macho_secattr;
3282 s->align = xlat->sectalign > bfdalign ? xlat->sectalign
3287 bfd_set_section_flags (abfd, sec, xlat->bfd_flags);
3307 /* TODO: see if we should use the xlat system for doing this by