Lines Matching refs:strlist
150 char **strlist; in print_props() local
154 strlist = libhal_psi_get_strlist (&it); in print_props()
155 for (i = 0; strlist[i] != 0; i++) { in print_props()
156 printf ("'%s'", strlist[i]); in print_props()
157 if (strlist[i+1] != NULL) in print_props()
438 char **strlist; in print_property() local
445 strlist = libhal_device_get_property_strlist (hal_ctx, udi, key, &error); in print_property()
446 for (i = 0; strlist[i] != 0; i++) { in print_property()
447 printf ("'%s'", strlist[i]); in print_property()
448 if (strlist[i+1] != NULL) in print_property()
455 libhal_free_string_array (strlist); in print_property()