HomeSort by relevance Sort by last modified time
    Searched defs:xlat (Results 1 - 3 of 3) sorted by null

  /external/strace/
defs.h 363 struct xlat { struct
367 #define XLAT(x) { x, #x }
370 extern const struct xlat addrfams[];
371 extern const struct xlat at_flags[];
372 extern const struct xlat dirent_types[];
373 extern const struct xlat open_access_modes[];
374 extern const struct xlat open_mode_flags[];
375 extern const struct xlat resource_flags[];
376 extern const struct xlat whence_codes[];
529 extern const char *xlookup(const struct xlat *, const unsigned int)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
obj-macho.c 178 const mach_o_section_name_xlat *xlat; local
182 xlat = bfd_mach_o_section_data_for_mach_sect (stdoutput, segname, sectname);
186 if (xlat != NULL)
188 name = xstrdup (xlat->bfd_name);
189 sectype = xlat->macho_sectype;
200 secattr = xlat->macho_secattr;
201 secalign = xlat->sectalign;
202 flags = xlat->bfd_flags;
606 const mach_o_section_name_xlat *xlat; local
612 xlat = bfd_mach_o_section_data_for_bfd_name (stdoutput, nam, &segn)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
mach-o.c 379 const mach_o_section_name_xlat *xlat; local
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; local
450 xlat = bfd_mach_o_section_data_for_bfd_name (abfd, name, &segname);
451 if (xlat)
3266 static const mach_o_section_name_xlat * xlat; local
    [all...]

Completed in 73 milliseconds