Lines Matching defs:valuesp
238 nwam_value_get_boolean_array(nwam_value_t value, boolean_t **valuesp,
241 assert(value != NULL && numvaluesp != NULL && valuesp != NULL);
244 *valuesp = value->nwv_values.nwv_boolean;
266 nwam_value_get_int64_array(nwam_value_t value, int64_t **valuesp,
269 assert(value != NULL && numvaluesp != NULL && valuesp != NULL);
272 *valuesp = value->nwv_values.nwv_int64;
294 nwam_value_get_uint64_array(nwam_value_t value, uint64_t **valuesp,
297 assert(value != NULL && numvaluesp != NULL && valuesp != NULL);
300 *valuesp = value->nwv_values.nwv_uint64;
322 nwam_value_get_string_array(nwam_value_t value, char ***valuesp,
325 assert(value != NULL && numvaluesp != NULL && valuesp != NULL);
328 *valuesp = value->nwv_values.nwv_string;