Home
last modified time | relevance | path

Searched refs:TracedValue (Results 1 – 17 of 17) sorted by relevance

/external/libchrome/base/trace_event/
Dtrace_event_argument.cc70 TracedValue::TracedValue() : TracedValue(0) { in TracedValue() function in base::trace_event::TracedValue
73 TracedValue::TracedValue(size_t capacity) { in TracedValue() function in base::trace_event::TracedValue
79 TracedValue::~TracedValue() { in ~TracedValue()
85 void TracedValue::SetInteger(const char* name, int value) { in SetInteger()
92 void TracedValue::SetIntegerWithCopiedName(base::StringPiece name, int value) { in SetIntegerWithCopiedName()
99 void TracedValue::SetDouble(const char* name, double value) { in SetDouble()
106 void TracedValue::SetDoubleWithCopiedName(base::StringPiece name, in SetDoubleWithCopiedName()
114 void TracedValue::SetBoolean(const char* name, bool value) { in SetBoolean()
121 void TracedValue::SetBooleanWithCopiedName(base::StringPiece name, in SetBooleanWithCopiedName()
129 void TracedValue::SetString(const char* name, base::StringPiece value) { in SetString()
[all …]
Dtrace_event_argument_unittest.cc18 scoped_refptr<TracedValue> value = new TracedValue(); in TEST()
31 scoped_refptr<TracedValue> value = new TracedValue(); in TEST()
44 scoped_refptr<TracedValue> value = new TracedValue(); in TEST()
80 scoped_refptr<TracedValue> value = new TracedValue(); in TEST()
116 scoped_refptr<TracedValue> value = new TracedValue(); in TEST()
133 auto dict_value = make_scoped_refptr(new TracedValue); in TEST()
136 auto nested_dict_value = make_scoped_refptr(new TracedValue); in TEST()
Dtrace_event_argument.h25 class BASE_EXPORT TracedValue : public ConvertableToTraceFormat {
27 TracedValue();
28 explicit TracedValue(size_t capacity);
38 void SetValue(const char* name, const TracedValue& value);
49 const TracedValue& value);
78 ~TracedValue() override;
87 DISALLOW_COPY_AND_ASSIGN(TracedValue);
Dprocess_memory_dump_unittest.cc47 scoped_refptr<TracedValue> traced_value(new TracedValue()); in TEST()
60 traced_value = new TracedValue(); in TEST()
67 scoped_refptr<TracedValue> traced_value(new TracedValue()); in TEST()
110 traced_value = new TracedValue(); in TEST()
154 scoped_refptr<TracedValue> traced_value(new TracedValue()); in TEST()
Dmemory_allocator_dump.h24 class TracedValue; variable
64 void AsValueInto(TracedValue* value) const;
79 TracedValue* attributes_for_testing() const { return attributes_.get(); } in attributes_for_testing()
84 scoped_refptr<TracedValue> attributes_;
Dprocess_memory_dump.h39 class TracedValue; variable
58 SmallMap<hash_map<std::string, scoped_refptr<TracedValue>>>;
112 scoped_refptr<TracedValue> heap_dump);
154 void AsValueInto(TracedValue* value) const;
Dprocess_memory_totals.h18 class TracedValue; variable
27 void AsValueInto(TracedValue* value) const;
Dprocess_memory_maps.h19 class TracedValue; variable
56 void AsValueInto(TracedValue* value) const;
Dmemory_allocator_dump.cc30 attributes_(new TracedValue), in MemoryAllocatorDump()
89 void MemoryAllocatorDump::AsValueInto(TracedValue* value) const { in AsValueInto()
Dheap_profiler_stack_frame_deduplicator.cc79 scoped_refptr<TracedValue> frame_node_value = new TracedValue; in AppendAsTraceFormat()
Dprocess_memory_totals.cc22 void ProcessMemoryTotals::AsValueInto(TracedValue* value) const { in AsValueInto()
Dmemory_allocator_dump_unittest.cc170 scoped_refptr<TracedValue> traced_value(new TracedValue()); in TEST()
Dprocess_memory_dump.cc150 scoped_refptr<TracedValue> heap_dump) { in AddHeapDump()
196 void ProcessMemoryDump::AsValueInto(TracedValue* value) const { in AsValueInto()
Dprocess_memory_maps.cc37 void ProcessMemoryMaps::AsValueInto(TracedValue* value) const { in AsValueInto()
Dmemory_dump_manager.cc480 TracedValue* traced_value = new TracedValue(); in FinalizeDumpAndAddToTrace()
/external/libchrome/base/test/
Dtest_pending_task.cc37 void TestPendingTask::AsValueInto(base::trace_event::TracedValue* state) const { in AsValueInto()
55 scoped_refptr<base::trace_event::TracedValue> state = in AsValue()
56 new base::trace_event::TracedValue(); in AsValue()
Dtest_pending_task.h60 void AsValueInto(base::trace_event::TracedValue* state) const;