Lines Matching refs:fp

485 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)  in kconfig_print_symbol()  argument
495 fprintf(fp, "# %s%s is not set\n", in kconfig_print_symbol()
504 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value); in kconfig_print_symbol()
508 kconfig_print_comment(FILE *fp, const char *value, void *arg) in kconfig_print_comment() argument
515 fprintf(fp, "#"); in kconfig_print_comment()
517 fprintf(fp, " "); in kconfig_print_comment()
518 xfwrite(p, l, 1, fp); in kconfig_print_comment()
521 fprintf(fp, "\n"); in kconfig_print_comment()
539 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in header_print_symbol() argument
554 fprintf(fp, "#define %s%s%s 1\n", in header_print_symbol()
564 fprintf(fp, "#define %s%s %s%s\n", in header_print_symbol()
570 fprintf(fp, "#define %s%s %s\n", in header_print_symbol()
580 header_print_comment(FILE *fp, const char *value, void *arg) in header_print_comment() argument
585 fprintf(fp, "/*\n"); in header_print_comment()
588 fprintf(fp, " *"); in header_print_comment()
590 fprintf(fp, " "); in header_print_comment()
591 xfwrite(p, l, 1, fp); in header_print_comment()
594 fprintf(fp, "\n"); in header_print_comment()
598 fprintf(fp, " */\n"); in header_print_comment()
613 tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in tristate_print_symbol() argument
617 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value)); in tristate_print_symbol()
626 static void conf_write_symbol(FILE *fp, struct symbol *sym, in conf_write_symbol() argument
638 printer->print_symbol(fp, sym, str, printer_arg); in conf_write_symbol()
643 printer->print_symbol(fp, sym, str, printer_arg); in conf_write_symbol()
648 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg) in conf_write_heading() argument
658 printer->print_comment(fp, buf, printer_arg); in conf_write_heading()