Searched refs:TracedValue (Results 1 – 17 of 17) sorted by relevance
/external/libchrome/base/trace_event/ |
D | trace_event_argument.cc | 70 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 …]
|
D | trace_event_argument_unittest.cc | 18 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()
|
D | trace_event_argument.h | 25 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);
|
D | process_memory_dump_unittest.cc | 47 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()
|
D | memory_allocator_dump.h | 24 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_;
|
D | process_memory_dump.h | 39 class TracedValue; variable 58 SmallMap<hash_map<std::string, scoped_refptr<TracedValue>>>; 112 scoped_refptr<TracedValue> heap_dump); 154 void AsValueInto(TracedValue* value) const;
|
D | process_memory_totals.h | 18 class TracedValue; variable 27 void AsValueInto(TracedValue* value) const;
|
D | process_memory_maps.h | 19 class TracedValue; variable 56 void AsValueInto(TracedValue* value) const;
|
D | memory_allocator_dump.cc | 30 attributes_(new TracedValue), in MemoryAllocatorDump() 89 void MemoryAllocatorDump::AsValueInto(TracedValue* value) const { in AsValueInto()
|
D | heap_profiler_stack_frame_deduplicator.cc | 79 scoped_refptr<TracedValue> frame_node_value = new TracedValue; in AppendAsTraceFormat()
|
D | process_memory_totals.cc | 22 void ProcessMemoryTotals::AsValueInto(TracedValue* value) const { in AsValueInto()
|
D | memory_allocator_dump_unittest.cc | 170 scoped_refptr<TracedValue> traced_value(new TracedValue()); in TEST()
|
D | process_memory_dump.cc | 150 scoped_refptr<TracedValue> heap_dump) { in AddHeapDump() 196 void ProcessMemoryDump::AsValueInto(TracedValue* value) const { in AsValueInto()
|
D | process_memory_maps.cc | 37 void ProcessMemoryMaps::AsValueInto(TracedValue* value) const { in AsValueInto()
|
D | memory_dump_manager.cc | 480 TracedValue* traced_value = new TracedValue(); in FinalizeDumpAndAddToTrace()
|
/external/libchrome/base/test/ |
D | test_pending_task.cc | 37 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()
|
D | test_pending_task.h | 60 void AsValueInto(base::trace_event::TracedValue* state) const;
|