Lines Matching refs:to_free
39 const char *(*to_string)(void *attr, bool *to_free);
51 static const char *attr_enum_to_string(void *attr, const char * const str_list[], bool *to_free) in attr_enum_to_string() argument
55 *to_free = false; in attr_enum_to_string()
61 static const char *attr_bool_to_string(void *attr, bool *to_free) in attr_bool_to_string() argument
65 *to_free = false; in attr_bool_to_string()
71 static const char *attr_speed_to_string(void *attr, bool *to_free) in attr_speed_to_string() argument
73 return attr_enum_to_string(attr, speed_str_list, to_free); in attr_speed_to_string()
76 static const char *attr_string_to_string(void *attr, bool *to_free) in attr_string_to_string() argument
78 *to_free = false; in attr_string_to_string()
288 bool to_free = false; in kunit_print_attr() local
301 attr_str = kunit_attr_list[i].to_string(attr, &to_free); in kunit_print_attr()
312 if (to_free) in kunit_print_attr()