Home | History | Annotate | Download | only in src

Lines Matching defs:form

1 /* Print information from ELF file in human-readable form.
107 Print information from ELF file in human-readable form.");
3343 dwarf_form_string (unsigned int form)
3374 if (likely (form < nknown_forms))
3375 result = known_forms[form];
3378 snprintf (buf, sizeof buf, gettext ("unknown form %" PRIx64),
3379 (uint64_t) form);
4010 unsigned int form;
4013 &name, &form, &enoffset) == 0)
4015 printf (" attr: %s, form: %s, offset: %#" PRIx64 "\n",
4016 dwarf_attr_string (name), dwarf_form_string (form),
4197 unsigned int form = dwarf_whatform (attrp);
4198 if (unlikely (form == 0))
4200 error (0, 0, gettext ("cannot get attribute form: %s"),
4205 switch (form)
4378 printf (" %*s%-20s [form: %d] ???\n",
4380 (int) form);