Lines Matching refs:list
235 property_find(properties list, const char *name) in property_find() argument
237 if (list == NULL || name == NULL || !name[0]) in property_find()
239 while (list != NULL) { in property_find()
240 if (list->name != NULL && strcmp(list->name, name) == 0) in property_find()
241 return (list->value); in property_find()
242 list = list->next; in property_find()
248 properties_free(properties list) in properties_free() argument
252 while (list) { in properties_free()
253 tmp = list->next; in properties_free()
254 if (list->name) in properties_free()
255 free(list->name); in properties_free()
256 if (list->value) in properties_free()
257 free(list->value); in properties_free()
258 free(list); in properties_free()
259 list = tmp; in properties_free()