/external/perfetto/src/tracing/ |
D | traced_value.cc | 27 TracedValue CreateTracedValueFromProto( in CreateTracedValueFromProto() 29 return TracedValue::CreateFromProto(context); in CreateTracedValueFromProto() 35 TracedValue TracedValue::CreateFromProto( in CreateFromProto() 37 return TracedValue(context, nullptr); in CreateFromProto() 40 void TracedValue::WriteInt64(int64_t value) && { in WriteInt64() 45 void TracedValue::WriteUInt64(uint64_t value) && { in WriteUInt64() 50 void TracedValue::WriteDouble(double value) && { in WriteDouble() 55 void TracedValue::WriteBoolean(bool value) && { in WriteBoolean() 60 void TracedValue::WriteString(const char* value) && { in WriteString() 65 void TracedValue::WriteString(const char* value, size_t len) && { in WriteString() [all …]
|
D | traced_value_unittest.cc | 255 void WriteIntoTracedValue(TracedValue context) const { in WriteIntoTracedValue() 264 void WriteIntoTrace(TracedValue context) const { in WriteIntoTrace() 276 void WriteIntoTracedValue(TracedValue context) const { in WriteIntoTracedValue() 280 void operator()(TracedValue context) const { in operator ()() 289 void WriteIntoTracedValue(TracedValue context) const { in WriteIntoTracedValue() 296 void WriteIntoTracedValue(TracedValue context) { in WriteIntoTracedValue() 303 void WriteIntoTracedValue(TracedValue context) { in WriteIntoTracedValue() 307 void WriteIntoTracedValue(TracedValue context) const { in WriteIntoTracedValue() 316 static void WriteIntoTrace(TracedValue context, in WriteIntoTrace() 325 TracedValue context, in WriteIntoTracedValue() [all …]
|
D | debug_annotation.cc | 26 void DebugAnnotation::WriteIntoTracedValue(TracedValue context) const { in WriteIntoTracedValue()
|
/external/perfetto/include/perfetto/tracing/ |
D | traced_value.h | 117 PERFETTO_EXPORT TracedValue 121 class PERFETTO_EXPORT TracedValue { 123 TracedValue(const TracedValue&) = delete; 124 TracedValue& operator=(const TracedValue&) = delete; 125 TracedValue& operator=(TracedValue&&) = delete; 126 TracedValue(TracedValue&&) = default; 127 ~TracedValue() = default; 164 friend TracedValue internal::CreateTracedValueFromProto( 167 static TracedValue CreateFromProto(protos::pbzero::DebugAnnotation*); 169 inline explicit TracedValue(protos::pbzero::DebugAnnotation* context, in TracedValue() function [all …]
|
D | traced_value_forward.h | 22 class TracedValue; variable 27 void WriteIntoTracedValue(TracedValue context, T&& value);
|
D | debug_annotation.h | 59 void WriteIntoTracedValue(TracedValue context) const;
|
/external/libchrome/base/trace_event/ |
D | trace_event_argument.cc | 74 TracedValue::TracedValue() : TracedValue(0) { in TracedValue() function in base::trace_event::TracedValue 77 TracedValue::TracedValue(size_t capacity) { in TracedValue() function in base::trace_event::TracedValue 83 TracedValue::~TracedValue() { in ~TracedValue() 89 void TracedValue::SetInteger(const char* name, int value) { in SetInteger() 96 void TracedValue::SetIntegerWithCopiedName(base::StringPiece name, int value) { in SetIntegerWithCopiedName() 103 void TracedValue::SetDouble(const char* name, double value) { in SetDouble() 110 void TracedValue::SetDoubleWithCopiedName(base::StringPiece name, in SetDoubleWithCopiedName() 118 void TracedValue::SetBoolean(const char* name, bool value) { in SetBoolean() 125 void TracedValue::SetBooleanWithCopiedName(base::StringPiece name, in SetBooleanWithCopiedName() 133 void TracedValue::SetString(const char* name, base::StringPiece value) { in SetString() [all …]
|
D | trace_event_argument_unittest.cc | 19 std::unique_ptr<TracedValue> value(new TracedValue()); in TEST() 32 std::unique_ptr<TracedValue> value(new TracedValue()); in TEST() 45 std::unique_ptr<TracedValue> value(new TracedValue()); in TEST() 81 std::unique_ptr<TracedValue> value(new TracedValue()); in TEST() 117 std::unique_ptr<TracedValue> value(new TracedValue()); in TEST() 134 auto dict_value = std::make_unique<TracedValue>(); in TEST() 137 auto nested_dict_value = std::make_unique<TracedValue>(); in TEST()
|
D | trace_event_argument.h | 25 class BASE_EXPORT TracedValue : public ConvertableToTraceFormat { 27 TracedValue(); 28 explicit TracedValue(size_t capacity); 29 ~TracedValue() override; 39 void SetValue(const char* name, const TracedValue& value); 50 const TracedValue& value); 86 DISALLOW_COPY_AND_ASSIGN(TracedValue);
|
D | blame_context.cc | 63 std::unique_ptr<trace_event::TracedValue> snapshot( in TakeSnapshot() 64 new trace_event::TracedValue); in TakeSnapshot() 84 void BlameContext::AsValueInto(trace_event::TracedValue* state) { in AsValueInto()
|
D | blame_context.h | 17 class TracedValue; variable 112 virtual void AsValueInto(trace_event::TracedValue* state);
|
D | process_memory_dump_unittest.cc | 79 auto traced_value = std::make_unique<TracedValue>(); in TEST() 102 auto traced_value = std::make_unique<TracedValue>(); in TEST() 130 auto traced_value = std::make_unique<TracedValue>(); in TEST() 148 traced_value.reset(new TracedValue); in TEST() 155 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST() 212 traced_value.reset(new TracedValue); in TEST() 323 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST()
|
D | memory_allocator_dump.h | 29 class TracedValue; variable 103 void AsValueInto(TracedValue* value) const;
|
D | process_memory_dump.h | 36 class TracedValue; variable 227 void SerializeAllocatorDumpsInto(TracedValue* value) const;
|
D | memory_allocator_dump_unittest.cc | 120 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST()
|
D | memory_allocator_dump.cc | 63 void MemoryAllocatorDump::AsValueInto(TracedValue* value) const { in AsValueInto()
|
/external/libchrome/base/test/ |
D | test_pending_task.cc | 43 void TestPendingTask::AsValueInto(base::trace_event::TracedValue* state) const { 61 std::unique_ptr<base::trace_event::TracedValue> state( 62 new base::trace_event::TracedValue());
|
D | test_pending_task.h | 66 void AsValueInto(base::trace_event::TracedValue* state) const;
|
/external/libchrome/base/task/sequence_manager/ |
D | time_domain.h | 58 void AsValueInto(trace_event::TracedValue* state) const; 82 virtual void AsValueIntoInternal(trace_event::TracedValue* state) const;
|
D | task_queue_impl.h | 220 void AsValueInto(TimeTicks now, trace_event::TracedValue* state) const; 401 trace_event::TracedValue* state); 404 trace_event::TracedValue* state); 407 trace_event::TracedValue* state);
|
D | time_domain.cc | 119 void TimeDomain::AsValueInto(trace_event::TracedValue* state) const { in AsValueInto() 131 void TimeDomain::AsValueIntoInternal(trace_event::TracedValue* state) const { in AsValueIntoInternal()
|
D | work_queue.h | 46 void AsValueInto(TimeTicks now, trace_event::TracedValue* state) const;
|
D | task_queue_selector.h | 55 void AsValueInto(trace_event::TracedValue* state) const;
|
D | task_queue_impl.cc | 489 trace_event::TracedValue* state) const { in AsValueInto() 728 trace_event::TracedValue* state) { in QueueAsValueInto() 737 trace_event::TracedValue* state) { in QueueAsValueInto() 754 trace_event::TracedValue* state) { in TaskAsValueInto()
|
/external/libchrome/libchrome_tools/patch/ |
D | trace_event.patch | 104 void AsValueInto(base::trace_event::TracedValue* state) const; 118 void TestPendingTask::AsValueInto(base::trace_event::TracedValue* state) const {
|