HomeSort by: relevance | last modified time | path
    Searched defs:trace (Results 1 - 25 of 68) sorted by relevancy

1 2 3

  /src/usr.bin/make/unit-tests/
opt-tracefile.mk 3 # Tests for the command line option '-T', which in jobs mode appends a trace
4 # record to a trace log whenever a job is started or completed.
8 @${MAKE} -f ${MAKEFILE} -j1 -Topt-tracefile.log trace
12 trace dependency1 dependency2: .PHONY target
15 trace: dependency1 dependency2 target
opt-tracefile.mk 3 # Tests for the command line option '-T', which in jobs mode appends a trace
4 # record to a trace log whenever a job is started or completed.
8 @${MAKE} -f ${MAKEFILE} -j1 -Topt-tracefile.log trace
12 trace dependency1 dependency2: .PHONY target
15 trace: dependency1 dependency2 target
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_stack_test.cc 21 static void TestStackTrace(StackTraceTy *trace) {
28 ObtainCurrentStack(&thr, 0, trace);
29 EXPECT_EQ(0U, trace->size);
31 ObtainCurrentStack(&thr, 42, trace);
32 EXPECT_EQ(1U, trace->size);
33 EXPECT_EQ(42U, trace->trace[0]);
37 ObtainCurrentStack(&thr, 0, trace);
38 EXPECT_EQ(2U, trace->size);
39 EXPECT_EQ(100U, trace->trace[0])
76 VarSizeStackTrace trace; local in function:__tsan::TEST
81 BufferedStackTrace trace; local in function:__tsan::TEST
86 VarSizeStackTrace trace; local in function:__tsan::TEST
91 BufferedStackTrace trace; local in function:__tsan::TEST
    [all...]
tsan_stack_test.cc 21 static void TestStackTrace(StackTraceTy *trace) {
28 ObtainCurrentStack(&thr, 0, trace);
29 EXPECT_EQ(0U, trace->size);
31 ObtainCurrentStack(&thr, 42, trace);
32 EXPECT_EQ(1U, trace->size);
33 EXPECT_EQ(42U, trace->trace[0]);
37 ObtainCurrentStack(&thr, 0, trace);
38 EXPECT_EQ(2U, trace->size);
39 EXPECT_EQ(100U, trace->trace[0])
76 VarSizeStackTrace trace; local in function:__tsan::TEST
81 BufferedStackTrace trace; local in function:__tsan::TEST
86 VarSizeStackTrace trace; local in function:__tsan::TEST
91 BufferedStackTrace trace; local in function:__tsan::TEST
    [all...]
  /src/sbin/routed/
Makefile 6 SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
18 COPTS.trace.c = -Wno-format-nonliteral
Makefile 6 SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
18 COPTS.trace.c = -Wno-format-nonliteral
  /src/games/backgammon/backgammon/
extra.c 45 FILE *trace; variable in typeref:typename:FILE *
126 if (trace == NULL)
127 trace = fopen("bgtrace", "w");
133 fputs("\nDoubles:\nBoard: ", trace);
135 fprintf(trace, " %d", board[i]);
136 fprintf(trace, "\n\tpip = %d, ", n);
171 fprintf(trace, "off = %d, ", n);
181 fprintf(trace, "free = %d\n", n);
182 fprintf(trace, "\tOFFC = %d, OFFO = %d\n", OFFC, OFFO);
183 fflush(trace);
    [all...]
extra.c 45 FILE *trace; variable in typeref:typename:FILE *
126 if (trace == NULL)
127 trace = fopen("bgtrace", "w");
133 fputs("\nDoubles:\nBoard: ", trace);
135 fprintf(trace, " %d", board[i]);
136 fprintf(trace, "\n\tpip = %d, ", n);
171 fprintf(trace, "off = %d, ", n);
181 fprintf(trace, "free = %d\n", n);
182 fprintf(trace, "\tOFFC = %d, OFFO = %d\n", OFFC, OFFO);
183 fflush(trace);
    [all...]
move.c 47 FILE *trace; variable in typeref:typename:FILE *
386 if (trace == NULL)
387 trace = fopen("bgtrace", "w");
388 fprintf(trace, "\nRoll: %d %d%s\n", D0, D1, race ? " (race)" : "");
389 fflush(trace);
425 if (trace == NULL)
426 trace = fopen("bgtrace", "w");
448 fputs("Board: ", trace);
450 fprintf(trace, " %d", board[i]);
452 fprintf(trace, "\n\tem = %d\n", em)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
38 BufferedStackTrace trace; member in class:__sanitizer::FastUnwindTest
59 // Mark the last fp point back up to terminate the stack trace.
78 EXPECT_EQ(6U, trace.size);
79 EXPECT_EQ(start_pc, trace.trace[0]);
81 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
92 EXPECT_EQ(4U, trace.size);
93 EXPECT_EQ(start_pc, trace.trace[0])
    [all...]
sanitizer_stacktrace_test.cc 27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
38 BufferedStackTrace trace; member in class:__sanitizer::FastUnwindTest
59 // Mark the last fp point back up to terminate the stack trace.
78 EXPECT_EQ(6U, trace.size);
79 EXPECT_EQ(start_pc, trace.trace[0]);
81 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
92 EXPECT_EQ(4U, trace.size);
93 EXPECT_EQ(start_pc, trace.trace[0])
    [all...]
  /src/games/banner/
banner.c 1025 static int debug, linen, max, nchars, pc, term, trace; variable in typeref:typename:int
1048 trace = 1;
1124 if (trace)
1129 if (trace)
1142 if (trace) {
1171 if (trace)
banner.c 1025 static int debug, linen, max, nchars, pc, term, trace; variable in typeref:typename:int
1048 trace = 1;
1124 if (trace)
1129 if (trace)
1142 if (trace) {
1171 if (trace)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stacktrace.h 42 const uptr *trace; member in struct:__sanitizer::StackTrace
51 StackTrace() : trace(nullptr), size(0), tag(0) {}
52 StackTrace(const uptr *trace, u32 size) : trace(trace), size(size), tag(0) {}
53 StackTrace(const uptr *trace, u32 size, u32 tag)
54 : trace(trace), size(size), tag(tag) {}
128 // Use this macro if you want to print stack trace with the caller
140 // Use this macro if you want to print stack trace with the curren
    [all...]
sanitizer_stacktrace.h 42 const uptr *trace; member in struct:__sanitizer::StackTrace
51 StackTrace() : trace(nullptr), size(0), tag(0) {}
52 StackTrace(const uptr *trace, u32 size) : trace(trace), size(size), tag(0) {}
53 StackTrace(const uptr *trace, u32 size, u32 tag)
54 : trace(trace), size(size), tag(tag) {}
128 // Use this macro if you want to print stack trace with the caller
140 // Use this macro if you want to print stack trace with the curren
    [all...]
  /src/sys/external/bsd/drm/dist/shared-core/
sis_ds.h 49 int trace; member in struct:__anon3b533f410208
sis_ds.h 49 int trace; member in struct:__anon3b533f410208
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/hdcp/
amdgpu_hdcp.c 36 struct mod_hdcp_trace *trace = &hdcp->connection.trace; local in function:push_error_status
38 if (trace->error_count < MAX_NUM_OF_ERROR_TRACE) {
39 trace->errors[trace->error_count].status = status;
40 trace->errors[trace->error_count].state_id = hdcp->state.id;
41 trace->error_count++;
352 /* reset error trace */
353 memset(&hdcp->connection.trace, 0, sizeof(hdcp->connection.trace))
    [all...]
amdgpu_hdcp.c 36 struct mod_hdcp_trace *trace = &hdcp->connection.trace; local in function:push_error_status
38 if (trace->error_count < MAX_NUM_OF_ERROR_TRACE) {
39 trace->errors[trace->error_count].status = status;
40 trace->errors[trace->error_count].state_id = hdcp->state.id;
41 trace->error_count++;
352 /* reset error trace */
353 memset(&hdcp->connection.trace, 0, sizeof(hdcp->connection.trace))
    [all...]
  /src/usr.bin/m4/
trace.c 1 /* $NetBSD: trace.c,v 1.9 2020/06/25 02:25:53 uwe Exp $ */
2 /* $OpenBSD: trace.c,v 1.15 2006/03/24 08:03:44 espie Exp $ */
31 __RCSID("$NetBSD: trace.c,v 1.9 2020/06/25 02:25:53 uwe Exp $");
165 trace(const char *argv[], int argc, struct input_file *inp) function in typeref:typename:size_t
trace.c 1 /* $NetBSD: trace.c,v 1.9 2020/06/25 02:25:53 uwe Exp $ */
2 /* $OpenBSD: trace.c,v 1.15 2006/03/24 08:03:44 espie Exp $ */
31 __RCSID("$NetBSD: trace.c,v 1.9 2020/06/25 02:25:53 uwe Exp $");
165 trace(const char *argv[], int argc, struct input_file *inp) function in typeref:typename:size_t
  /src/usr.sbin/timed/timedc/
timedc.c 58 int trace = 0; variable in typeref:typename:int
timedc.c 58 int trace = 0; variable in typeref:typename:int
  /src/games/backgammon/common_source/
subs.c 122 static FILE *trace; local in function:writel
125 if (trace == NULL)
126 trace = fopen("bgtrace", "w");
128 fprintf(trace, "writel: \"");
131 fprintf(trace, "^%c", (*s) ^ 0100);
133 putc(*s, trace);
135 fprintf(trace, "\"\n");
136 fflush(trace);
subs.c 122 static FILE *trace; local in function:writel
125 if (trace == NULL)
126 trace = fopen("bgtrace", "w");
128 fprintf(trace, "writel: \"");
131 fprintf(trace, "^%c", (*s) ^ 0100);
133 putc(*s, trace);
135 fprintf(trace, "\"\n");
136 fflush(trace);

Completed in 135 milliseconds

1 2 3