• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/

Lines Matching defs:field

64      This is linked through the next_id field of debug_class_type.  */
162 /* A mark field which indicates whether the struct has already been
273 /* A field in a struct or union. */
277 /* Name of the field. */
279 /* Type of the field. */
281 /* Visibility of the field. */
290 /* Bit position of the field in the struct. */
292 /* Size of the field in bits. */
1702 /* Make a field for a struct. The second argument is the name. The
1703 third argument is the type of the field. The fourth argument is
1704 the bit position of the field. The fifth argument is the size of
1705 the field (it may be zero). The sixth argument is the visibility
1706 of the field. */
2248 /* Get the type of a field. */
2251 debug_get_field_type (void *handle ATTRIBUTE_UNUSED, debug_field field)
2253 if (field == NULL)
2255 return field->type;
2258 /* Get the name of a field. */
2261 debug_get_field_name (void *handle ATTRIBUTE_UNUSED, debug_field field)
2263 if (field == NULL)
2265 return field->name;
2268 /* Get the bit position of a field. */
2271 debug_get_field_bitpos (void *handle ATTRIBUTE_UNUSED, debug_field field)
2273 if (field == NULL || field->static_member)
2275 return field->u.f.bitpos;
2278 /* Get the bit size of a field. */
2281 debug_get_field_bitsize (void *handle ATTRIBUTE_UNUSED, debug_field field)
2283 if (field == NULL || field->static_member)
2285 return field->u.f.bitsize;
2288 /* Get the visibility of a field. */
2291 debug_get_field_visibility (void *handle ATTRIBUTE_UNUSED, debug_field field)
2293 if (field == NULL)
2295 return field->visibility;
2298 /* Get the physical name of a field. */
2301 debug_get_field_physname (void *handle ATTRIBUTE_UNUSED, debug_field field)
2303 if (field == NULL || ! field->static_member)
2305 return field->u.s.physname;
2324 /* The base_id field holds an ID value which will never be used, so