Lines Matching refs:fp

484 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)  in kconfig_print_symbol()  argument
494 fprintf(fp, "# %s%s is not set\n", in kconfig_print_symbol()
503 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value); in kconfig_print_symbol()
507 kconfig_print_comment(FILE *fp, const char *value, void *arg) in kconfig_print_comment() argument
514 fprintf(fp, "#"); in kconfig_print_comment()
516 fprintf(fp, " "); in kconfig_print_comment()
517 xfwrite(p, l, 1, fp); in kconfig_print_comment()
520 fprintf(fp, "\n"); in kconfig_print_comment()
538 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in header_print_symbol() argument
553 fprintf(fp, "#define %s%s%s 1\n", in header_print_symbol()
563 fprintf(fp, "#define %s%s %s%s\n", in header_print_symbol()
569 fprintf(fp, "#define %s%s %s\n", in header_print_symbol()
579 header_print_comment(FILE *fp, const char *value, void *arg) in header_print_comment() argument
584 fprintf(fp, "/*\n"); in header_print_comment()
587 fprintf(fp, " *"); in header_print_comment()
589 fprintf(fp, " "); in header_print_comment()
590 xfwrite(p, l, 1, fp); in header_print_comment()
593 fprintf(fp, "\n"); in header_print_comment()
597 fprintf(fp, " */\n"); in header_print_comment()
612 tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in tristate_print_symbol() argument
616 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value)); in tristate_print_symbol()
625 static void conf_write_symbol(FILE *fp, struct symbol *sym, in conf_write_symbol() argument
639 printer->print_symbol(fp, sym, str2, printer_arg); in conf_write_symbol()
644 printer->print_symbol(fp, sym, str, printer_arg); in conf_write_symbol()
649 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg) in conf_write_heading() argument
659 printer->print_comment(fp, buf, printer_arg); in conf_write_heading()