• Home
  • Raw
  • Download

Lines Matching refs:fp

591 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)  in kconfig_print_symbol()  argument
601 fprintf(fp, "# %s%s is not set\n", in kconfig_print_symbol()
610 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value); in kconfig_print_symbol()
614 kconfig_print_comment(FILE *fp, const char *value, void *arg) in kconfig_print_comment() argument
621 fprintf(fp, "#"); in kconfig_print_comment()
623 fprintf(fp, " "); in kconfig_print_comment()
624 xfwrite(p, l, 1, fp); in kconfig_print_comment()
627 fprintf(fp, "\n"); in kconfig_print_comment()
645 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in header_print_symbol() argument
660 fprintf(fp, "#define %s%s%s 1\n", in header_print_symbol()
670 fprintf(fp, "#define %s%s %s%s\n", in header_print_symbol()
676 fprintf(fp, "#define %s%s %s\n", in header_print_symbol()
686 header_print_comment(FILE *fp, const char *value, void *arg) in header_print_comment() argument
691 fprintf(fp, "/*\n"); in header_print_comment()
694 fprintf(fp, " *"); in header_print_comment()
696 fprintf(fp, " "); in header_print_comment()
697 xfwrite(p, l, 1, fp); in header_print_comment()
700 fprintf(fp, "\n"); in header_print_comment()
704 fprintf(fp, " */\n"); in header_print_comment()
719 tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) in tristate_print_symbol() argument
723 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value)); in tristate_print_symbol()
732 static void conf_write_symbol(FILE *fp, struct symbol *sym, in conf_write_symbol() argument
743 printer->print_symbol(fp, sym, str, printer_arg); in conf_write_symbol()
748 printer->print_symbol(fp, sym, str, printer_arg); in conf_write_symbol()
753 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg) in conf_write_heading() argument
763 printer->print_comment(fp, buf, printer_arg); in conf_write_heading()