Symbol: fieldtype
lib/libform/field_types.c
189
free_fieldtype(FIELDTYPE *fieldtype)
lib/libform/field_types.c
191
if (fieldtype == NULL)
lib/libform/field_types.c
194
if (fieldtype->refcount > 0)
lib/libform/field_types.c
197
if ((fieldtype->flags & _TYPE_IS_BUILTIN) == _TYPE_IS_BUILTIN)
lib/libform/field_types.c
200
if ((fieldtype->flags & _TYPE_IS_LINKED) == _TYPE_IS_LINKED)
lib/libform/field_types.c
202
fieldtype->link->next->refcount--;
lib/libform/field_types.c
203
fieldtype->link->prev->refcount--;
lib/libform/field_types.c
206
free(fieldtype);
lib/libform/field_types.c
215
set_fieldtype_arg(FIELDTYPE *fieldtype, char * (*make_args)(va_list *),
lib/libform/field_types.c
218
if ((fieldtype == NULL) || (make_args == NULL)
lib/libform/field_types.c
222
fieldtype->make_args = make_args;
lib/libform/field_types.c
223
fieldtype->copy_args = copy_args;
lib/libform/field_types.c
224
fieldtype->free_args = free_args;
lib/libform/field_types.c
233
set_fieldtype_choice(FIELDTYPE *fieldtype, int (*next_choice)(FIELD *, char *),
lib/libform/field_types.c
236
if ((fieldtype == NULL) || (next_choice == NULL)
lib/libform/field_types.c
240
fieldtype->next_choice = next_choice;
lib/libform/field_types.c
241
fieldtype->prev_choice = prev_choice;
usr.sbin/acpitools/aml/aml_obj.h
107
enum fieldtype ftype; /* f_t_field */
usr.sbin/acpitools/aml/aml_obj.h
112
enum fieldtype ftype; /* f_t_index */
usr.sbin/acpitools/aml/aml_obj.h
118
enum fieldtype ftype; /* f_t_bank */
usr.sbin/acpitools/aml/aml_obj.h
130
enum fieldtype ftype;