Lines Matching refs:value

141  * The nvlist_add functions add the given name/value pair.
147 void nvlist_add_bool(nvlist_t *nvl, const char *name, bool value);
148 void nvlist_add_number(nvlist_t *nvl, const char *name, uint64_t value);
149 void nvlist_add_string(nvlist_t *nvl, const char *name, const char *value);
154 void nvlist_add_nvlist(nvlist_t *nvl, const char *name, const nvlist_t *value);
155 void nvlist_add_binary(nvlist_t *nvl, const char *name, const void *value, size_t size);
156 void nvlist_add_bool_array(nvlist_t *nvl, const char *name, const bool *value, size_t nitems);
157 void nvlist_add_number_array(nvlist_t *nvl, const char *name, const uint64_t *value, size_t nitems);
158 void nvlist_add_string_array(nvlist_t *nvl, const char *name, const char * const *value, size_t nitems);
159 void nvlist_add_nvlist_array(nvlist_t *nvl, const char *name, const nvlist_t * const *value, size_t nitems);
161 void nvlist_add_descriptor(nvlist_t *nvl, const char *name, int value);
162 void nvlist_add_descriptor_array(nvlist_t *nvl, const char *name, const int *value, size_t nitems);
165 void nvlist_append_bool_array(nvlist_t *nvl, const char *name, const bool value);
166 void nvlist_append_number_array(nvlist_t *nvl, const char *name, const uint64_t value);
167 void nvlist_append_string_array(nvlist_t *nvl, const char *name, const char * const value);
168 void nvlist_append_nvlist_array(nvlist_t *nvl, const char *name, const nvlist_t * const value);
170 void nvlist_append_descriptor_array(nvlist_t *nvl, const char *name, int value);
174 * The nvlist_move functions add the given name/value pair.
178 void nvlist_move_string(nvlist_t *nvl, const char *name, char *value);
179 void nvlist_move_nvlist(nvlist_t *nvl, const char *name, nvlist_t *value);
180 void nvlist_move_binary(nvlist_t *nvl, const char *name, void *value, size_t size);
181 void nvlist_move_bool_array(nvlist_t *nvl, const char *name, bool *value, size_t nitems);
182 void nvlist_move_string_array(nvlist_t *nvl, const char *name, char **value, size_t nitems);
183 void nvlist_move_nvlist_array(nvlist_t *nvl, const char *name, nvlist_t **value, size_t nitems);
184 void nvlist_move_number_array(nvlist_t *nvl, const char *name, uint64_t *value, size_t nitems);
186 void nvlist_move_descriptor(nvlist_t *nvl, const char *name, int value);
187 void nvlist_move_descriptor_array(nvlist_t *nvl, const char *name, int *value, size_t nitems);
191 * The nvlist_get functions returns value associated with the given name.
211 * The nvlist_take functions returns value associated with the given name and
231 * The nvlist_free functions removes the given name/value pair from the nvlist