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)
55 *to_free = false;
61 static const char *attr_speed_to_string(void *attr, bool *to_free)
63 return attr_enum_to_string(attr, speed_str_list, to_free);
66 static const char *attr_string_to_string(void *attr, bool *to_free)
68 *to_free = false;
228 bool to_free = false;
241 attr_str = kunit_attr_list[i].to_string(attr, &to_free);
252 if (to_free)