Lines Matching defs:value
33 char *value;
62 if (op->value)
70 * If the option has a value then it takes a string
73 if (op->value) {
74 op->value = val;
190 ret = update_option_value(option, op->value);
203 ret = update_option_value(option, op->value);
313 * @val: (optional) the value for the option
315 * Modify a plugin option. If @val is given than the value of the option
343 free(op->value);
345 op->value = strdup(val);
346 if (!op->value)
349 op->value = NULL;
369 op->value = strdup(val);
370 if (!op->value) {
415 print_op_data(s, "value", op->value);