Home
last modified time | relevance | path

Searched refs:value_l (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/bsd/iscsi/dist/src/lib/
Dparameters.c104 if ((param->value_l = iscsi_malloc_atomic(sizeof(iscsi_parameter_value_t))) == NULL) { in param_list_add()
108 param->value_l->next = NULL; in param_list_add()
109 (void) strlcpy(param->value_l->value, dflt, sizeof(param->value_l->value)); in param_list_add()
156 param->key, param->valid, param->dflt, param->value_l->value); in param_list_add()
169 if (tmp->value_l) { in param_list_destroy()
170 for (item_ptr = tmp->value_l; item_ptr != NULL; item_ptr = next) { in param_list_destroy()
215 item_ptr = ptr->value_l; in param_val_which()
242 for (item_ptr = ptr->value_l; item_ptr != NULL; item_ptr = next) { in param_val_delete_all()
246 ptr->value_l = NULL; in param_val_delete_all()
277 if (ptr->value_l) { in param_atoi()
[all …]
Dinitiator.c170 for (vp = ip->value_l ; vp ; vp = vp->next) {
661 for (vp = ip->value_l ; vp ; vp = vp->next, pos++) {
765 for (vp = ip->value_l ; vp ; vp = vp->next) { in discovery_phase()
/netbsd/src/external/bsd/iscsi/dist/include/
Dparameters.h118 iscsi_parameter_value_t *value_l; /* value list */ member