Lines Matching refs:valueSet
186 scf_value_t **valueSet = NULL; in fcoe_add_remove_scf_entry() local
259 valueSet = (scf_value_t **)calloc(1, sizeof (*valueSet) in fcoe_add_remove_scf_entry()
261 if (valueSet == NULL) { in fcoe_add_remove_scf_entry()
335 valueSet[i] = scf_value_create(handle); in fcoe_add_remove_scf_entry()
336 if (valueSet[i] == NULL) { in fcoe_add_remove_scf_entry()
343 if (scf_value_set_ustring(valueSet[i], buf) == -1) { in fcoe_add_remove_scf_entry()
350 if (scf_entry_add_value(entry, valueSet[i]) == -1) { in fcoe_add_remove_scf_entry()
361 valueSet = realloc(valueSet, in fcoe_add_remove_scf_entry()
362 sizeof (*valueSet) * lastAlloc); in fcoe_add_remove_scf_entry()
363 if (valueSet == NULL) { in fcoe_add_remove_scf_entry()
383 valueSet[i] = scf_value_create(handle); in fcoe_add_remove_scf_entry()
384 if (valueSet[i] == NULL) { in fcoe_add_remove_scf_entry()
396 if (scf_value_set_ustring(valueSet[i], memberName) == -1) { in fcoe_add_remove_scf_entry()
406 if (scf_entry_add_value(entry, valueSet[i]) == -1) { in fcoe_add_remove_scf_entry()
459 scf_value_destroy(valueSet[i]); in fcoe_add_remove_scf_entry()
465 if (valueSet != NULL) { in fcoe_add_remove_scf_entry()
466 free(valueSet); in fcoe_add_remove_scf_entry()