Lines Matching defs:nv
215 emitmkoption(FILE *fp, const char *ass, const struct nvlist *nv)
219 fprintf(fp, "%s%s", nv->nv_name, ass);
220 for (p = nv->nv_str; *p; p++) {
279 struct nvlist *nv;
283 for (nv = options; nv != NULL; nv = nv->nv_next) {
286 if (DEFINED_OPTION(nv->nv_name))
288 const char *s = nv->nv_str;
289 fprintf(fp, "\t-D%s%s%s%s \\\n", nv->nv_name,
310 for (nv = mkoptions; nv != NULL; nv = nv->nv_next)
311 emitmkoption(fp, "=", nv);
317 for (nv = options; nv != NULL; nv = nv->nv_next) {
319 dl = find_declared_option_option(nv->nv_name);
321 const char *s = nv->nv_str;
325 fprintf(fp, "KERNEL_OPT_%s=\"%s\"\n", nv->nv_name, s);
652 struct nvlist *nv;
666 for (nv = appmkoptions; nv != NULL; nv = nv->nv_next)
667 fprintf(fp, "%s+=%s\n", nv->nv_name, nv->nv_str);
669 for (nv = condmkoptions; nv != NULL; nv = nv->nv_next) {
670 cond = nv->nv_ptr;
672 emitmkoption(fp, "+=", nv);
674 nv->nv_ptr = NULL;