Home | History | Annotate | Download | only in src

Lines Matching defs:form

1 /* Print information from ELF file in human-readable form.
76 Print information from ELF file in human-readable form.");
2847 dwarf_form_string (unsigned int form)
2878 if (form < nknown_forms)
2879 result = known_forms[form];
2882 snprintf (buf, sizeof buf, gettext ("unknown form %" PRIx64),
2883 (uint64_t) form);
3289 unsigned int form;
3291 while (dwarf_getabbrevattr (&abbrev, cnt, &name, &form, &enoffset) == 0)
3293 printf (" attr: %s, form: %s, offset: %#" PRIx64 "\n",
3294 dwarf_attr_string (name), dwarf_form_string (form),
3392 unsigned int form = dwarf_whatform (attrp);
3393 if (unlikely (form == 0))
3395 error (0, 0, gettext ("cannot get attribute form: %s"),
3400 switch (form)
3492 printf (" %*s%-20s [form: %d] ???\n",
3494 (int) form);