/src/usr.bin/make/unit-tests/ |
opt-tracefile.mk | 1 # $NetBSD: opt-tracefile.mk,v 1.6 2025/05/09 18:38:40 rillig Exp $ 7 @rm -f opt-tracefile.log 8 @${MAKE} -f ${MAKEFILE} -j1 -Topt-tracefile.log trace 9 @awk '{ $$1 = "<timestamp>"; $$4 = "<make-pid>"; if (NF >= 7) $$7 = "<job-pid>"; print }' opt-tracefile.log 10 @rm opt-tracefile.log
|
opt-tracefile.mk | 1 # $NetBSD: opt-tracefile.mk,v 1.6 2025/05/09 18:38:40 rillig Exp $ 7 @rm -f opt-tracefile.log 8 @${MAKE} -f ${MAKEFILE} -j1 -Topt-tracefile.log trace 9 @awk '{ $$1 = "<timestamp>"; $$4 = "<make-pid>"; if (NF >= 7) $$7 = "<job-pid>"; print }' opt-tracefile.log 10 @rm opt-tracefile.log
|
Makefile | 294 TESTS+= opt-tracefile
|
Makefile | 294 TESTS+= opt-tracefile
|
/src/usr.bin/ktrace/ |
ktrace.c | 321 do_ktrace(const char *tracefile, int vers, int ops, int trpoints, int pid, 328 (!tracefile || strcmp(tracefile, "-") == 0)) { 396 ret = ktrace(ktracefile = tracefile, ops, trpoints, pid); 399 tracefile != NULL ? tracefile : "NULL", pid);
|
ktrace.c | 321 do_ktrace(const char *tracefile, int vers, int ops, int trpoints, int pid, 328 (!tracefile || strcmp(tracefile, "-") == 0)) { 396 ret = ktrace(ktracefile = tracefile, ops, trpoints, pid); 399 tracefile != NULL ? tracefile : "NULL", pid);
|
/src/bin/sh/ |
show.c | 85 char * tracefile; /* name of the tracefile */ member in struct:traceinfo 97 FILE *tracefile; /* just for histedit */ variable in typeref:typename:FILE * 133 if (tracefile) 134 fflush(tracefile); 151 error("Can't open tracefile: %s (%s)\n", s, strerror(errno)); 157 error("Attempt to use fd %d as tracefile thwarted\n", fd); 164 if (tracefile) 165 (void) fclose(tracefile); /* also closes tfd */ 166 tracefile = fdopen(fd, "ae"); /* don't care if it is NULL * [all...] |
show.c | 85 char * tracefile; /* name of the tracefile */ member in struct:traceinfo 97 FILE *tracefile; /* just for histedit */ variable in typeref:typename:FILE * 133 if (tracefile) 134 fflush(tracefile); 151 error("Can't open tracefile: %s (%s)\n", s, strerror(errno)); 157 error("Attempt to use fd %d as tracefile thwarted\n", fd); 164 if (tracefile) 165 (void) fclose(tracefile); /* also closes tfd */ 166 tracefile = fdopen(fd, "ae"); /* don't care if it is NULL * [all...] |
histedit.c | 90 extern FILE *tracefile; 145 if (tracefile) 146 el_err = tracefile;
|
histedit.c | 90 extern FILE *tracefile; 145 if (tracefile) 146 el_err = tracefile;
|
/src/usr.bin/kdump/ |
kdump.c | 90 static const char *tracefile = NULL; variable in typeref:typename:const char * 216 tracefile = optarg; 272 if (tracefile == NULL) { 274 tracefile = argv[0]; 278 tracefile = DEF_TRACEFILE; 289 if (!freopen(tracefile, "r", stdin)) 290 err(1, "%s", tracefile);
|
kdump.c | 90 static const char *tracefile = NULL; variable in typeref:typename:const char * 216 tracefile = optarg; 272 if (tracefile == NULL) { 274 tracefile = argv[0]; 278 tracefile = DEF_TRACEFILE; 289 if (!freopen(tracefile, "r", stdin)) 290 err(1, "%s", tracefile);
|
/src/usr.bin/make/ |
main.c | 134 static const char *tracefile; variable in typeref:typename:const char * 498 tracefile = bmake_strdup(argvalue); 1454 Trace_Init(tracefile);
|
main.c | 134 static const char *tracefile; variable in typeref:typename:const char * 498 tracefile = bmake_strdup(argvalue); 1454 Trace_Init(tracefile);
|