Lines Matching refs:valueSet
187 scf_value_t **valueSet = NULL; in fcoe_add_remove_scf_entry() local
260 valueSet = (scf_value_t **)calloc(1, sizeof (*valueSet) in fcoe_add_remove_scf_entry()
262 if (valueSet == NULL) { in fcoe_add_remove_scf_entry()
336 valueSet[i] = scf_value_create(handle); in fcoe_add_remove_scf_entry()
337 if (valueSet[i] == NULL) { in fcoe_add_remove_scf_entry()
344 if (scf_value_set_ustring(valueSet[i], buf) == -1) { in fcoe_add_remove_scf_entry()
351 if (scf_entry_add_value(entry, valueSet[i]) == -1) { in fcoe_add_remove_scf_entry()
362 valueSet = realloc(valueSet, in fcoe_add_remove_scf_entry()
363 sizeof (*valueSet) * lastAlloc); in fcoe_add_remove_scf_entry()
364 if (valueSet == NULL) { in fcoe_add_remove_scf_entry()
384 valueSet[i] = scf_value_create(handle); in fcoe_add_remove_scf_entry()
385 if (valueSet[i] == NULL) { in fcoe_add_remove_scf_entry()
397 if (scf_value_set_ustring(valueSet[i], memberName) == -1) { in fcoe_add_remove_scf_entry()
407 if (scf_entry_add_value(entry, valueSet[i]) == -1) { in fcoe_add_remove_scf_entry()
460 scf_value_destroy(valueSet[i]); in fcoe_add_remove_scf_entry()
466 if (valueSet != NULL) { in fcoe_add_remove_scf_entry()
467 free(valueSet); in fcoe_add_remove_scf_entry()