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

12345678910

/fuchsia/zircon/system/utest/trace/
H A Dfields_tests.cpp5 #include <trace-engine/fields.h>
16 trace::Field<0, 0>::Set(value, uint8_t(1));
17 trace::Field<1, 1>::Set(value, uint8_t(1));
18 trace::Field<2, 2>::Set(value, uint8_t(1));
19 trace::Field<3, 3>::Set(value, uint8_t(1));
20 trace::Field<4, 4>::Set(value, uint8_t(1));
21 trace::Field<5, 5>::Set(value, uint8_t(1));
22 trace::Field<6, 6>::Set(value, uint8_t(1));
23 trace::Field<7, 7>::Set(value, uint8_t(1));
27 trace
[all...]
H A Dfixture.h7 // manages the trace engine on behalf of a test.
17 #include <trace-engine/buffer_internal.h>
18 #include <trace-reader/records.h>
22 #include <trace-engine/types.h>
26 // Specifies whether the trace engine async loop uses the same thread as the
37 // FixtureSquelch is used to filter out elements of a trace record that may
59 bool fixture_compare_raw_records(const fbl::Vector<trace::Record>& records,
63 fbl::Vector<trace::Record>* records);
65 using trace::internal::trace_buffer_header;
H A Drules.mk23 MODULE_NAME := trace-test
26 system/ulib/trace \
27 system/ulib/trace-reader \
41 system/ulib/trace-engine \
/fuchsia/zircon/system/utest/trace-reader/
H A Drecords_tests.cpp5 #include <trace-reader/records.h>
23 trace::ProcessThread pt;
28 pt = trace::ProcessThread(0, 1);
33 pt = trace::ProcessThread(1, 0);
38 pt = trace::ProcessThread(trace::ProcessThread(4, 5));
43 EXPECT_TRUE(trace::ProcessThread(1, 2) == trace::ProcessThread(1, 2));
44 EXPECT_FALSE(trace::ProcessThread(1, 2) == trace
[all...]
H A Drules.mk20 MODULE_NAME := trace-reader-test
23 system/ulib/trace-reader \
24 system/ulib/trace-engine \
45 MODULE_NAME := trace-reader-test
48 system/ulib/trace-reader.hostlib \
54 -Isystem/ulib/trace-engine/include \
55 -Isystem/ulib/trace-reader/include \
H A Dreader_tests.cpp5 #include <trace-reader/reader.h>
20 trace::TraceReader::RecordConsumer MakeRecordConsumer(
21 fbl::Vector<trace::Record>* out_records) {
22 return [out_records](trace::Record record) {
27 trace::TraceReader::ErrorHandler MakeErrorHandler(fbl::String* out_error) {
40 trace::Chunk subchunk;
42 trace::Chunk empty;
69 trace::Chunk subchunk;
92 trace::Chunk chunk(kData, fbl::count_of(kData));
153 fbl::Vector<trace
[all...]
/fuchsia/zircon/system/ulib/trace-provider/
H A Dutils.h9 namespace trace { namespace
15 } // namespace trace
H A Dutils.cpp10 namespace trace { namespace
25 } // namespace trace
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dshow.h39 void trace(const char *, ...);
/fuchsia/zircon/system/ulib/trace-engine/include/trace-engine/
H A Dbuffer_internal.h6 // This is an internal header between trace-engine and trace-provider.
13 #include <trace-engine/context.h>
15 namespace trace { namespace
126 } // namespace trace
135 ::trace::internal::trace_buffer_header* header);
/fuchsia/zircon/kernel/platform/
H A Ddebug.cpp9 #include <trace.h>
/fuchsia/zircon/kernel/syscalls/
H A Dsystem_arm64.cpp11 #include <trace.h>
/fuchsia/zircon/system/uapp/trace-benchmark/
H A Dbenchmarks.h9 #include <trace/handler.h>
H A Drules.mk17 MODULE_NAME := trace-benchmark
20 system/ulib/trace \
34 system/ulib/trace-engine
H A Dbenchmarks_ntrace.cpp10 #include <trace/event.h>
/fuchsia/zircon/system/ulib/trace-engine/
H A Dnonce.cpp5 #include <trace-engine/instrumentation.h>
H A Dcontext_api.cpp16 #include <trace-engine/fields.h>
17 #include <trace-engine/handler.h>
21 namespace trace { namespace
107 // while writing trace events in the common case. There may be some
268 // Provides support for writing sequences of 64-bit words into a trace buffer.
452 const size_t record_size = sizeof(trace::RecordHeader) +
453 trace::Pad(length);
457 .WriteUint64(trace::MakeRecordHeader(trace::RecordType::kString, record_size) |
458 trace
[all...]
/fuchsia/zircon/system/uapp/trace-example/
H A Drules.mk15 MODULE_NAME := trace-example
18 system/ulib/trace-provider \
19 system/ulib/trace \
33 system/ulib/trace-engine
/fuchsia/zircon/system/ulib/fs/include/fs/
H A Dtrace.h10 #include <trace/event.h>
12 // TODO(ZX-1407): If ulib/trace defines a no-op
22 // Enable trace printf()s
/fuchsia/zircon/system/dev/block/sdmmc/
H A Drules.mk23 system/ulib/trace-provider \
24 system/ulib/trace \
38 system/ulib/trace-engine
/fuchsia/zircon/system/uapp/gfxlatency/
H A Drules.mk16 system/ulib/trace-provider \
17 system/ulib/trace \
35 system/ulib/trace-engine
/fuchsia/zircon/system/ulib/perftest/
H A Drules.mk23 system/ulib/trace \
24 system/ulib/trace-engine \
25 system/ulib/trace-provider \
/fuchsia/zircon/system/ulib/trace/include/trace/
H A Dhandler.h7 // of the trace engine.
9 // See <trace-engine/handler.h> for the C API and more detailed documentation.
14 #include <trace-engine/handler.h>
18 namespace trace { namespace
21 // Make sure the trace has fully stopped before destroying the handler object.
27 // Called by the trace engine to ask whether the specified category is enabled.
30 // Clients may cache the results while a trace is running; dynamic changes
31 // to the enabled categories may go unnoticed until the next trace.
38 // Called by the trace engine to indicate it has completed startup.
41 // Called by the trace engin
[all...]
H A Dobserver.h9 // See <trace-engine/instrumentation.h> for the C API and more detailed
15 #include <trace-engine/instrumentation.h>
23 namespace trace { namespace
25 // Receives notifications when the trace state or set of enabled categories changes.
28 // Initializes the trace observer.
53 } // namespace trace
/fuchsia/zircon/system/ulib/trace/
H A Dhandler.cpp5 #include <trace/handler.h>
7 namespace trace { namespace
41 } // namespace trace

Completed in 133 milliseconds

12345678910