Searched refs:trace (Results 1 - 25 of 137) sorted by relevance

123456

/barrelfish-2018-10-04/lib/barrelfish/
H A Dtrace.c4 * against these variables and putting them in lib/trace means linking
5 * everything against lib/trace
18 #include <trace/trace.h>
/barrelfish-2018-10-04/tools/tracing/
H A Dbfscope.py23 s.send("trace\n")
29 trace = "" variable
30 while len(trace) < tracelen:
31 trace += s.recv(1000000)
32 #print len(trace)
38 of.write(trace)
/barrelfish-2018-10-04/usr/monitor/arch/arm/
H A Dmonitor_server.c18 #include <trace/trace.h>
H A Dinter.c17 #include <trace/trace.h>
/barrelfish-2018-10-04/tools/demo/TestAquarium/
H A DProgram.cs27 /// Reads the trace command from the stream
29 /// <returns>true if got trace command, false for error or EOF</returns>
32 byte[] trace = new byte[6];
36 int got = stream.Read(trace, offset, trace.Length - offset);
40 } while (offset < trace.Length);
41 if (trace[0] == (byte)'t' && trace[1] == (byte)'r' && trace[2] == (byte)'a'
42 && trace[
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Opium/demo/
H A Dshow_queens.pl13 opium_nl(trace).
36 opium_write(trace, ' ---'),
43 opium_write(trace, '|').
46 opium_write(trace, '| x '),
50 opium_write(trace, '| '),
56 opium_nl(trace), write_space,
59 opium_nl(trace), write_space,
61 opium_nl(trace), write_space,
71 opium_write(trace, ' ').
/barrelfish-2018-10-04/kernel/arch/x86/
H A Dmisc.c26 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/mem_serv_dist/
H A Dmemtest_trace.c19 #include <trace/trace.h>
31 // Tell the trace system when to start and stop. We can also
47 // start the trace going by providing the start event
54 // stop the trace by providing the stop event
70 // dump the trace on the output. We can copy and paste it
H A Dmem_bench.c24 #include <trace/trace.h>
H A Dmem_bench_2.c25 #include <trace/trace.h>
/barrelfish-2018-10-04/kernel/
H A Dlogging.c24 #include <trace/trace.h>
93 * Kernel trace buffer
/barrelfish-2018-10-04/lib/trace/
H A Dtrace.c20 #include <trace/trace.h>
79 * allow us to map the trace buffer into the child's vspace).
106 * \brief Set up the trace buffer on the current core and notify the kernel.
120 // Tell the kernel that the trace buffer exists
/barrelfish-2018-10-04/usr/acpi/arch/armv8/
H A Dacpi_arch.c27 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/pixels/
H A Dpixels.c3 * \brief Barrelfish trace server
19 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/tracectrl/
H A Dtracectrl.c22 #include <trace/trace.h>
35 // Tell the trace system when to start and stop. We can also
46 // start the trace going by providing the start event
52 // stop the trace by providing the stop event
/barrelfish-2018-10-04/usr/webserver/
H A Dmain.c23 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/acpi/arch/x86/
H A Dacpi_arch.c29 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/bench/bomp_progress/
H A Dsync.c22 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/device_managers/net_gen_dev/
H A DNGD_mng.c15 #include <trace/trace.h>
/barrelfish-2018-10-04/include/flounder/
H A Dflounder_support_ump.h22 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/examples/xmpl-trace/
H A Dtrace.c18 #include <trace/trace.h>
32 debug_printf("after trace reset\n");
34 // Tell the trace system when to start and stop. We can also
45 // start the trace going by providing the start event
51 // stop the trace by providing the stop event
93 // dump the trace on the output. We can copy and paste it
96 debug_printf("the trace dump\n");
98 // Let the trace framework decide where to flush to
101 debug_printf("finished trace dum
[all...]
/barrelfish-2018-10-04/usr/tests/bomptest/
H A Dtest.c20 #include <trace/trace.h>
/barrelfish-2018-10-04/usr/drivers/megaraid/
H A Dqueue.h114 #define TRACEBUF struct qm_trace trace;
119 (head)->trace.prevline = (head)->trace.lastline; \
120 (head)->trace.prevfile = (head)->trace.lastfile; \
121 (head)->trace.lastline = __LINE__; \
122 (head)->trace.lastfile = __FILE__; \
126 (elem)->trace.prevline = (elem)->trace.lastline; \
127 (elem)->trace
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Opium/
H A Dopium_light_kernel_patch.pl60 Tells whether the first trace line upon returning to
62 0 means do not trace it
63 1 means do trace it
85 % The trace line event handler
167 % Install Opium as the trace event handler
/barrelfish-2018-10-04/doc/008-tracing/
H A DTracing.tex73 The tracing library can be used to instrument code in order to trace events.
76 you can analyze the trace data using Aquarium 2. Aquarium 2 can be customized with scripts,
79 trace data with external tools in an easy fashion.
83 \section{Overview\label{sec:trace-overview}}
88 trace logs) we decided to change as little as possible on the interface of the
89 tracing framework. In the end the structure of the trace logs that are generated
95 order to create trace logs. One part of the tracing framework allows developers
96 to trace events at any point in the code, where the data that is actually stored
97 is defined in the Section \ref{sec:trace-event}. The second part is responsible
98 for delivering the generated trace log
[all...]

Completed in 252 milliseconds

123456