Lines Matching defs:vals

280  * in add_tr_entry_values() in the list 'vals'.
283 remove_tr_entry_values(uu_list_t *vals)
287 for (rval = uu_list_first(vals); rval != NULL;
288 rval = uu_list_next(vals, rval)) {
298 * scf value for each value in 'vals'. The pointers to the scf values
306 uu_list_t *vals)
310 for (rval = uu_list_first(vals); rval != NULL;
311 rval = uu_list_next(vals, rval)) {
315 remove_tr_entry_values(vals);
322 remove_tr_entry_values(vals);
331 * Stores the values contained in the list 'vals' into the property 'prop_name'
345 _store_rep_vals(uu_list_t *vals, const char *inst_fmri, const char *prop_name)
382 if (add_tr_entry_values(rep_handle, entry, vals) < 0) {
393 remove_tr_entry_values(vals);
405 remove_tr_entry_values(vals);
450 * Writes the repository values in the vals list to
458 repvals_to_file(const char *fmri, const char *name, uu_list_t *vals)
487 for (spval = uu_list_first(vals); spval != NULL;
488 spval = uu_list_next(vals, spval)) {
531 store_retrieve_rep_vals(uu_list_t *vals, const char *fmri,
551 if (repvals_to_file(fmri, "pid", vals)) {
574 empty_rep_val_list(vals);
577 if (add_rep_val(vals, tval) == -1) {
578 empty_rep_val_list(vals);
585 empty_rep_val_list(vals);
601 if ((ret = (store ? _store_rep_vals(vals, fmri, prop) :
602 _retrieve_rep_vals(vals, fmri, prop))) !=
615 store_rep_vals(uu_list_t *vals, const char *fmri, const char *prop)
617 return (store_retrieve_rep_vals(vals, fmri, prop, B_TRUE));
621 retrieve_rep_vals(uu_list_t *vals, const char *fmri, const char *prop)
623 return (store_retrieve_rep_vals(vals, fmri, prop, B_FALSE));