Lines Matching defs:value
250 void *value = NULL;
268 * parsed for value to store in configuration structure, other line are
317 value = malloc (size);
318 wa = (SANE_Word *) value;
335 value = malloc (size);
336 ba = (SANE_Bool *) value;
360 "sanei_configure_attach: couldn't find a valid boolean value");
369 value = malloc (size);
370 wa = (SANE_Word *) value;
390 "sanei_configure_attach: couldn't find a string value to parse");
393 value = string;
408 /* check decoded value */
409 status = sanei_check_value (config->descriptors[i], value);
411 /* if value OK, copy it in configuration struct */
414 memcpy (config->values[i], value, size);
416 if (value != NULL)
418 free (value);
419 value = NULL;