Lines Matching refs:kfunction
123 struct debug_function_type *kfunction; member
1416 t->u.kfunction = f; in debug_make_function_type()
2160 return type->u.kfunction->return_type; in debug_get_return_type()
2186 *pvarargs = type->u.kfunction->varargs; in debug_get_parameter_types()
2187 return type->u.kfunction->arg_types; in debug_get_parameter_types()
2569 type->u.kfunction->return_type, in debug_write_type()
2572 if (type->u.kfunction->arg_types == NULL) in debug_write_type()
2576 for (is = 0; type->u.kfunction->arg_types[is] != NULL; is++) in debug_write_type()
2578 type->u.kfunction->arg_types[is], in debug_write_type()
2583 type->u.kfunction->varargs); in debug_write_type()
3134 if (t1->u.kfunction->varargs != t2->u.kfunction->varargs in debug_type_samep()
3135 || ! debug_type_samep (info, t1->u.kfunction->return_type, in debug_type_samep()
3136 t2->u.kfunction->return_type) in debug_type_samep()
3137 || ((t1->u.kfunction->arg_types == NULL) in debug_type_samep()
3138 != (t2->u.kfunction->arg_types == NULL))) in debug_type_samep()
3140 else if (t1->u.kfunction->arg_types == NULL) in debug_type_samep()
3146 a1 = t1->u.kfunction->arg_types; in debug_type_samep()
3147 a2 = t2->u.kfunction->arg_types; in debug_type_samep()