/src/usr.bin/indent/ |
debug.c | 168 debug_file(void) function in typeref:typename:FILE * 177 (void)fprintf(debug_file(), "%s:\n", state.heading1); 182 (void)fprintf(debug_file(), "\t%s:\n", state.heading2); 195 (void)vfprintf(debug_file(), fmt, ap); 207 (void)vfprintf(debug_file(), fmt, ap); 209 (void)fprintf(debug_file(), "\n");
|
/src/usr.bin/make/ |
main.c | 198 if (opts.debug_file != stdout && opts.debug_file != stderr) 199 fclose(opts.debug_file); 208 opts.debug_file = stdout; 212 opts.debug_file = stderr; 224 opts.debug_file = fopen(fname, mode); 225 if (opts.debug_file == NULL) { 329 setvbuf(opts.debug_file, NULL, _IONBF, 0); 330 if (opts.debug_file != stdout) 1084 /* opts.debug_file has already been initialized earlier * [all...] |
make.c | 129 vfprintf(opts.debug_file, fmt, ap); 715 GNode_FprintDetails(opts.debug_file, "", pgn, ""); 954 GNode_FprintDetails(opts.debug_file, "", cn, "\n"); 1101 if (DEBUG(MAKE) && opts.debug_file != stdout) { 1104 GNode_FprintDetails(opts.debug_file, "(", ogn, ")\n"); 1150 if (DEBUG(MAKE) && opts.debug_file != stdout) { 1153 GNode_FprintDetails(opts.debug_file, " (", gn, 1163 if (DEBUG(MAKE) && opts.debug_file != stdout)
|
parse.c | 614 if (opts.debug_file != stdout && opts.debug_file != stderr) { 616 ParseVErrorInternal(opts.debug_file, false, gn, 640 if (opts.debug_file != stdout && opts.debug_file != stderr) { 642 ParseVErrorInternal(opts.debug_file, true, NULL,
|
targ.c | 470 GNode_FprintDetails(opts.debug_file, ", ", gn, "\n");
|
make.h | 707 FILE *debug_file; member in struct:CmdOpts
|
/src/usr.bin/xlint/lint1/ |
debug.c | 56 debug_file(void) function in typeref:typename:FILE * 74 fprintf(debug_file(), "%s%*s", 78 (void)vfprintf(debug_file(), fmt, va);
|