Home
last modified time | relevance | path

Searched refs:debugfp (Results 1 – 25 of 45) sorted by relevance

12

/dports/www/davix/davix-0.7.6/src/modules/copy/delegation/
H A DGRSTx509MakeProxyCert.cpp47 if (debugfp != NULL) in mpcerror()
136 mpcerror(debugfp, in GRSTx509MakeProxyCert()
147 mpcerror(debugfp, in GRSTx509MakeProxyCert()
156 mpcerror(debugfp, in GRSTx509MakeProxyCert()
166 mpcerror(debugfp, in GRSTx509MakeProxyCert()
188 mpcerror(debugfp, in GRSTx509MakeProxyCert()
203 mpcerror(debugfp, in GRSTx509MakeProxyCert()
212 mpcerror(debugfp, in GRSTx509MakeProxyCert()
224 mpcerror(debugfp, in GRSTx509MakeProxyCert()
234 mpcerror(debugfp, in GRSTx509MakeProxyCert()
[all …]
H A DGRSTx509MakeProxyCert.h43 int GRSTx509MakeProxyCert(char **proxychain, FILE *debugfp,
/dports/astro/gpsd/gpsd-3.20/
H A Dlibgps_core.c28 static FILE *debugfp; variable
34 debugfp = fp; in gps_enable_debug()
52 (void)fputs(buf, debugfp); in libgps_trace()
312 (void)fprintf(debugfp, "flags: (0x%04x) %s\n", in libgps_dump_state()
316 (void)fprintf(debugfp, "ONLINE: %s\n", in libgps_dump_state()
319 (void)fprintf(debugfp, "TIME: %s\n", in libgps_dump_state()
344 (void)fprintf(debugfp, "MODE: mode: %d (%s)\n", in libgps_dump_state()
348 (void)fprintf(debugfp, in libgps_dump_state()
359 (void)fprintf(debugfp, in libgps_dump_state()
384 (void)fprintf(debugfp, "RAW: got raw data\n"); in libgps_dump_state()
[all …]
/dports/graphics/tesseract/tesseract-5.0.0/src/ccutil/
H A Dtprintf.cpp43 static FILE *debugfp = nullptr; // debug file in tprintf() local
58 if (debugfp == nullptr && debug_file_name[0] != '\0') { in tprintf()
59 debugfp = fopen(debug_file_name, "wb"); in tprintf()
60 } else if (debugfp != nullptr && debug_file_name[0] == '\0') { in tprintf()
61 fclose(debugfp); in tprintf()
62 debugfp = nullptr; in tprintf()
67 if (debugfp != nullptr) { in tprintf()
68 vfprintf(debugfp, format, args); in tprintf()
/dports/mail/imapfilter/imapfilter-2.7.5/src/
H A Dlog.c22 static FILE *debugfp = NULL; /* Pointer to debug file. */ variable
55 if (!opts.debug || !debugfp) in debug()
59 vfprintf(debugfp, fmt, args); in debug()
60 fflush(debugfp); in debug()
71 if (!opts.debug || !debugfp) in debugc()
74 fputc(c, debugfp); in debugc()
151 debugfp = fopen(opts.debug, "w"); in open_debug()
152 if (debugfp == NULL) { in open_debug()
168 if (debugfp == NULL) in close_debug()
171 return fclose(debugfp); in close_debug()
/dports/accessibility/yasr/yasr-0.6.9/yasr/
H A Ddebug.c28 static FILE *debugfp; variable
36 if ((debugfp = fopen(filename, "w+")) == NULL) in open_debug()
50 vfprintf(debugfp, format, argp); in debug()
51 (void) fflush(debugfp); in debug()
61 (void) fclose(debugfp); in close_debug()
/dports/multimedia/v4l_compat/v4l-utils-4l-utils-1.20.0/contrib/pci_traffic/
H A Dwrite_log_to_file.patch23 +static FILE *debugfp = NULL;
27 + if (!debugfp) \
28 + debugfp = fopen("/var/log/qemu_hw_pci.log", "a+"); \
29 + if (debugfp) \
30 + fprintf(debugfp, "%ld %s: " fmt, (long)time(NULL), \
/dports/multimedia/libv4l/v4l-utils-4l-utils-1.20.0/contrib/pci_traffic/
H A Dwrite_log_to_file.patch23 +static FILE *debugfp = NULL;
27 + if (!debugfp) \
28 + debugfp = fopen("/var/log/qemu_hw_pci.log", "a+"); \
29 + if (debugfp) \
30 + fprintf(debugfp, "%ld %s: " fmt, (long)time(NULL), \
/dports/multimedia/v4l-utils/v4l-utils-4l-utils-1.20.0/contrib/pci_traffic/
H A Dwrite_log_to_file.patch23 +static FILE *debugfp = NULL;
27 + if (!debugfp) \
28 + debugfp = fopen("/var/log/qemu_hw_pci.log", "a+"); \
29 + if (debugfp) \
30 + fprintf(debugfp, "%ld %s: " fmt, (long)time(NULL), \
/dports/games/scourge/scourge/src/io/
H A Dzipfile.cpp25 FILE *debugfp; variable
33 debugfp = fopen( "write.tmp", "wb" ); in ZipFile()
48 debugfp = fopen( "read.tmp", "wb" ); in ZipFile()
70 fclose( debugfp ); in ~ZipFile()
96 fwrite( buff, size, count, debugfp ); in write()
194 fwrite( tmpBuff, 1, ( CHUNK - strm.avail_out ), debugfp ); in inflateMore()
/dports/editors/tweak/tweak-3.02/
H A Dbuffer.c521 static FILE *debugfp = NULL; variable
528 if (!debugfp) { in buffer_diagnostic()
529 debugfp = fdopen(3, "w"); in buffer_diagnostic()
530 if (!debugfp) in buffer_diagnostic()
531 debugfp = fopen("debug.log", "w"); in buffer_diagnostic()
535 fprintf(debugfp, "Buffer [%s] is null\n", title); in buffer_diagnostic()
539 fprintf(debugfp, "Listing of buffer [%s]:\n", title); in buffer_diagnostic()
549 fprintf(debugfp, " %02x", blk->data[j]); in buffer_diagnostic()
551 fprintf(debugfp, "\n"); in buffer_diagnostic()
555 fprintf(debugfp, "Listing concluded\n\n"); in buffer_diagnostic()
[all …]
/dports/emulators/quasi88/quasi88-0.6.4/src/WIN32/
H A Dmain.c34 FILE *debugfp; variable
56 if (debugfp == NULL) { debugfp = stdout; } in WinMain()
H A Devent.c1132 fprintf(debugfp, "%s %02x <%x> ", s, wp, (lp&(1UL<<24))?1:0); in key_event_debug()
1135 fprintf(debugfp, "%s\n", s); in key_event_debug()
1137 fprintf(debugfp, "0x%02X\n", wp); in key_event_debug()
1149 fprintf(debugfp, "Chr %c [%02x]\n", wp, wp); in key_event_debug()
H A Dgraph.c212 fprintf(debugfp, "Info: H-pixel %d\n", GetDeviceCaps(hdc, HORZRES)); in create_window()
213 fprintf(debugfp, "Info: V-pixel %d\n", GetDeviceCaps(hdc, VERTRES)); in create_window()
214 fprintf(debugfp, "Info: Depth %d\n", GetDeviceCaps(hdc, BITSPIXEL)); in create_window()
H A Ddevice.h19 extern FILE *debugfp;
/dports/devel/notcurses/notcurses-3.0.1/src/lib/
H A Ddebug.c5 void notcurses_debug(const notcurses* nc, FILE* debugfp){ in notcurses_debug() argument
11 fbuf_finalize(&f, debugfp); in notcurses_debug()
/dports/science/gromacs/gromacs-2021.4/src/gromacs/selection/tests/
H A Dgensphere.py121 debugfp = open('debug.txt', 'w') variable
137 debugfp.write('%3d%8.3f%8.3f%8.3f %4.1f %2d%8.3f%8.3f%8.3f\n' %
144 debugfp.close()
/dports/security/pinentry-tty/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr macro
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp) in move_mouse_and_click()
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1)); in move_mouse_and_click()
/dports/security/pinentry-gtk2/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp) in detach()
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1)); in detach()
/dports/security/pinentry-efl/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp)
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1));
/dports/security/pinentry-curses/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr macro
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp) in move_mouse_and_click()
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1)); in move_mouse_and_click()
/dports/security/pinentry/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp)
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1));
/dports/security/pinentry-gnome3/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr macro
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp) in move_mouse_and_click()
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1)); in move_mouse_and_click()
/dports/security/pinentry-qt5/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr macro
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp) in move_mouse_and_click()
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1)); in move_mouse_and_click()
/dports/security/pinentry-fltk/pinentry-1.1.1/w32/
H A Dmain.c44 #ifndef debugfp
45 #define debugfp stderr macro
328 if ( (SendInput (idx, inp, sizeof (INPUT)) != idx) && debugfp) in move_mouse_and_click()
329 fprintf (debugfp, "SendInput failed: %s\n", w32_strerror (-1)); in move_mouse_and_click()

12