Lines Matching refs:cv
223 struct config_value *cv;
274 cv = malloc(sizeof(struct config_value));
275 cv->value =
277 STAILQ_INSERT_TAIL(temp_config[i].list, cv,
575 struct config_value *cv;
589 cv =
591 cv->value =
593 STAILQ_INSERT_TAIL(c[i].list, cv,
616 cv = malloc(sizeof(struct config_value));
617 cv->value = strdup("/etc/pkg");
618 STAILQ_INSERT_TAIL(c[REPOS_DIR].list, cv, next);
619 cv = malloc(sizeof(struct config_value));
620 if (asprintf(&cv->value, "%s/etc/pkg/repos", localbase) < 0)
622 STAILQ_INSERT_TAIL(c[REPOS_DIR].list, cv, next);
625 STAILQ_FOREACH(cv, c[REPOS_DIR].list, next)
626 load_repositories(cv->value, requested_repo);