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