/src/lib/libcurses/ |
ctrace.c | 50 static FILE *tracefp = NULL; /* Curses debugging file descriptor. */ variable in typeref:typename:FILE * 77 tracefp = fopen(tf, "w"); 91 if (tracefp == NULL || !(tracemask & area)) 97 (void)fprintf(tracefp, "%llu.%06lu: ", 101 (void)vfprintf(tracefp, fmt, ap); 104 (void)fflush(tracefp);
|
ctrace.c | 50 static FILE *tracefp = NULL; /* Curses debugging file descriptor. */ variable in typeref:typename:FILE * 77 tracefp = fopen(tf, "w"); 91 if (tracefp == NULL || !(tracemask & area)) 97 (void)fprintf(tracefp, "%llu.%06lu: ", 101 (void)vfprintf(tracefp, fmt, ap); 104 (void)fflush(tracefp);
|
/src/lib/libc/db/btree/ |
bt_debug.c | 52 static FILE *tracefp; variable in typeref:typename:FILE * 61 if (tracefp != NULL) 65 if ((tracefp = fopen("/tmp/__bt_debug", "w")) != NULL) 68 tracefp = stderr; 91 (void)fprintf(tracefp, "%s: pgsz %d", 94 (void)fprintf(tracefp, " keys %lu", (unsigned long) t->bt_nrecs); 98 (void)fprintf(tracefp, "%s%s", sep, name); \ 109 (void)fprintf(tracefp, ")\n"); 117 (void)fflush(tracefp); 133 (void)fprintf(tracefp, "magic %lx\n", (unsigned long) m->magic) [all...] |
bt_debug.c | 52 static FILE *tracefp; variable in typeref:typename:FILE * 61 if (tracefp != NULL) 65 if ((tracefp = fopen("/tmp/__bt_debug", "w")) != NULL) 68 tracefp = stderr; 91 (void)fprintf(tracefp, "%s: pgsz %d", 94 (void)fprintf(tracefp, " keys %lu", (unsigned long) t->bt_nrecs); 98 (void)fprintf(tracefp, "%s%s", sep, name); \ 109 (void)fprintf(tracefp, ")\n"); 117 (void)fflush(tracefp); 133 (void)fprintf(tracefp, "magic %lx\n", (unsigned long) m->magic) [all...] |