Lines Matching refs:values
113 const char **values)
162 for (i = 0; values[i]; i++) {
163 ret = ldb_msg_add_string(msg, attribute, values[i]);
192 for (i = 0; values[i]; i++) {
193 ret = ldb_msg_add_string(msg, attribute, values[i]);
227 char ***values)
277 struct ldb_val v = el->values[i];
288 *values = vals;
376 char **values = NULL;
380 ret = confdb_get_param(cdb, ctx, section, attribute, &values);
385 if (values[0]) {
386 if (values[1] != NULL) {
387 /* too many values */
391 restr = talloc_steal(ctx, values[0]);
397 talloc_free(values);
409 talloc_free(values);
415 talloc_free(values);
426 char **values = NULL;
437 ret = confdb_get_param(cdb, tmp_ctx, section, attribute, &values);
442 if (values[0]) {
443 if (values[1] != NULL) {
444 /* too many values */
450 val = strtol(values[0], NULL, 0);
482 char **values = NULL;
493 ret = confdb_get_param(cdb, tmp_ctx, section, attribute, &values);
498 if (values[0]) {
499 if (values[1] != NULL) {
500 /* too many values */
506 val = strtol(values[0], NULL, 0);
533 char **values = NULL;
544 ret = confdb_get_param(cdb, tmp_ctx, section, attribute, &values);
549 if (values[0]) {
550 if (values[1] != NULL) {
551 /* too many values */
556 if (strcasecmp(values[0], "FALSE") == 0) {
559 } else if (strcasecmp(values[0], "TRUE") == 0) {
592 char **values = NULL;
595 ret = confdb_get_param(cdb, ctx, section, attribute, &values);
600 if (values && values[0]) {
601 if (values[1] != NULL) {
602 /* too many values */
612 ret = split_on_separator(ctx, values[0], ',', true, true, result, NULL);
615 talloc_free(values);
997 "Enumeration is now a boolean and takes true/false values. "