Home
last modified time | relevance | path

Searched refs:debuglog (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/usr.bin/cvs/windows-NT/SCC/
H A Dscc.c14 FILE *debuglog; member
71 context->debuglog = fp; in SccInitialize()
99 if (ferror (context->debuglog)) in SccUninitialize()
101 if (fclose (context->debuglog) == EOF) in SccUninitialize()
135 fprintf (context->debuglog, "Uh oh. outproc is a null pointer\n"); in SccOpenProject()
137 fflush (context->debuglog); in SccOpenProject()
142 fprintf (context->debuglog, "SccOpenProject (aux_proj=%s)\n", aux_proj); in SccOpenProject()
149 fflush (context->debuglog); in SccOpenProject()
157 fprintf (context->debuglog, "SccCloseProject\n"); in SccCloseProject()
158 fflush (context->debuglog); in SccCloseProject()
[all …]
H A DChangeLog112 * scc.c (SccCheckout): Write to debuglog and return
119 * scc.c: Go back to using debuglog not outproc for
131 * scc.c (SccOpenProject): Use outproc not debuglog
/openbsd-src/libexec/tradcpp/
H A Ddirective.c206 debuglog(&lp->current, "#if: %s", in d_if()
224 debuglog(&lp->current, "#ifdef %s: %s", in d_ifdef()
242 debuglog(&lp->current, "#ifndef %s: %s", in d_ifndef()
387 debuglog(&lp->current, "Defining %s()", line); in d_define()
392 debuglog(&lp->current, "Defining %s", line); in d_define()
405 debuglog(&lp->current, "Undef %s", line); in d_undef()
421 debuglog(p, "Entering include file \"%s\"", line+1); in tryinclude()
423 debuglog(p, "Leaving include file \"%s\"", line+1); in tryinclude()
429 debuglog(p, "Entering include file <%s>", line+1); in tryinclude()
431 debuglog(p, "Leaving include file <%s>", line+1); in tryinclude()
H A Dutils.h72 PF(2, 3) void debuglog(const struct place *p, const char *fmt, ...);
H A Dfiles.c190 debuglog(&places.current, "Reading file %s", name); in file_read()
192 debuglog(&places.current, "Reading standard input"); in file_read()
H A Dmacro.c893 debuglog(p, "defined(%s): %s", name, val); in expand_domacro()
903 debuglog(p, "Expanding macro %s", m->name); in expand_domacro()
905 debuglog(p, "Substituting for %s: %s", m->name, newbuf); in expand_domacro()
910 debuglog(p, "Complete expansion for %s: %s", m->name, newbuf2); in expand_domacro()
H A Deval.c645 debuglog(p, "Undefined symbol %s; substituting 0", word); in wordval()
748 debuglog(p, "eval: %s", expr); in eval()
H A Dplace.c341 debuglog(const struct place *p, const char *fmt, ...) in debuglog() function