Home
last modified time | relevance | path

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

12

/external/v8/src/tracing/
Dtraced-value.cc65 std::unique_ptr<TracedValue> TracedValue::Create() { in Create()
66 return std::unique_ptr<TracedValue>(new TracedValue()); in Create()
69 TracedValue::TracedValue() : first_item_(true) { in TracedValue() function in v8::tracing::TracedValue
73 TracedValue::~TracedValue() { in ~TracedValue()
79 void TracedValue::SetInteger(const char* name, int value) { in SetInteger()
85 void TracedValue::SetDouble(const char* name, double value) { in SetDouble()
92 void TracedValue::SetBoolean(const char* name, bool value) { in SetBoolean()
98 void TracedValue::SetString(const char* name, const std::string& value) { in SetString()
104 void TracedValue::BeginDictionary(const char* name) { in BeginDictionary()
112 void TracedValue::BeginArray(const char* name) { in BeginArray()
[all …]
Dtraced-value.h19 class TracedValue : public ConvertableToTraceFormat {
21 ~TracedValue() override;
23 static std::unique_ptr<TracedValue> Create();
48 TracedValue();
61 DISALLOW_COPY_AND_ASSIGN(TracedValue);
Dtrace-event.cc24 auto value = v8::tracing::TracedValue::Create(); in AddEndTraceEvent()
/external/libchrome/base/trace_event/
Dtrace_event_argument.cc71 TracedValue::TracedValue() : TracedValue(0) { in TracedValue() function in base::trace_event::TracedValue
74 TracedValue::TracedValue(size_t capacity) { in TracedValue() function in base::trace_event::TracedValue
80 TracedValue::~TracedValue() { in ~TracedValue()
86 void TracedValue::SetInteger(const char* name, int value) { in SetInteger()
93 void TracedValue::SetIntegerWithCopiedName(base::StringPiece name, int value) { in SetIntegerWithCopiedName()
100 void TracedValue::SetDouble(const char* name, double value) { in SetDouble()
107 void TracedValue::SetDoubleWithCopiedName(base::StringPiece name, in SetDoubleWithCopiedName()
115 void TracedValue::SetBoolean(const char* name, bool value) { in SetBoolean()
122 void TracedValue::SetBooleanWithCopiedName(base::StringPiece name, in SetBooleanWithCopiedName()
130 void TracedValue::SetString(const char* name, base::StringPiece value) { in SetString()
[all …]
Dtrace_event_argument_unittest.cc19 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 = WrapUnique(new TracedValue()); in TEST()
137 auto nested_dict_value = WrapUnique(new TracedValue()); in TEST()
Dtrace_event_argument.h25 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);
Dmemory_allocator_dump.h24 class TracedValue; variable
71 void AsValueInto(TracedValue* value) const;
91 TracedValue* attributes_for_testing() const { return attributes_.get(); } in attributes_for_testing()
96 std::unique_ptr<TracedValue> attributes_;
Dprocess_memory_dump_unittest.cc27 TracedValue* GetHeapDump(const ProcessMemoryDump& pmd, const char* name) { in GetHeapDump()
67 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST()
85 traced_value.reset(new TracedValue); in TEST()
92 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST()
161 traced_value.reset(new TracedValue); in TEST()
206 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST()
Dheap_profiler_heap_dump_writer.h23 class TracedValue; variable
30 BASE_EXPORT std::unique_ptr<TracedValue> ExportHeapDump(
58 BASE_EXPORT std::unique_ptr<TracedValue> Serialize(const std::set<Entry>& dump);
Dprocess_memory_dump.h36 class TracedValue; variable
55 std::unordered_map<std::string, std::unique_ptr<TracedValue>>;
168 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
58 void AsValueInto(TracedValue* value) const;
Dheap_profiler_heap_dump_writer.cc267 std::unique_ptr<TracedValue> Serialize(const std::set<Entry>& entries) { in Serialize()
269 std::unique_ptr<TracedValue> traced_value(new TracedValue); in Serialize()
311 std::unique_ptr<TracedValue> ExportHeapDump( in ExportHeapDump()
Dmemory_allocator_dump.cc30 attributes_(new TracedValue), in MemoryAllocatorDump()
97 void MemoryAllocatorDump::AsValueInto(TracedValue* value) const { in AsValueInto()
Dheap_profiler_stack_frame_deduplicator.cc81 std::unique_ptr<TracedValue> frame_node_value(new TracedValue); in AppendAsTraceFormat()
Dprocess_memory_totals.cc22 void ProcessMemoryTotals::AsValueInto(TracedValue* value) const { in AsValueInto()
Dmemory_allocator_dump_unittest.cc171 std::unique_ptr<TracedValue> traced_value(new TracedValue); in TEST()
Dprocess_memory_maps.cc40 void ProcessMemoryMaps::AsValueInto(TracedValue* value) const { in AsValueInto()
Dprocess_memory_dump.cc254 std::unique_ptr<TracedValue> heap_dump = ExportHeapDump( in DumpHeapUsage()
302 void ProcessMemoryDump::AsValueInto(TracedValue* value) const { in AsValueInto()
Dmemory_dump_manager.cc612 std::unique_ptr<TracedValue> traced_value(new TracedValue); in FinalizeDumpAndAddToTrace()
/external/libchrome/base/test/
Dtest_pending_task.cc39 void TestPendingTask::AsValueInto(base::trace_event::TracedValue* state) const { in AsValueInto()
57 std::unique_ptr<base::trace_event::TracedValue> state( in AsValue()
58 new base::trace_event::TracedValue()); in AsValue()
Dtest_pending_task.h61 void AsValueInto(base::trace_event::TracedValue* state) const;
/external/v8/src/inspector/
Dv8-stack-trace-impl.h18 class TracedValue; variable
46 void toTracedValue(TracedValue*) const;
/external/v8/src/profiler/
Dprofile-generator.cc388 using v8::tracing::TracedValue;
398 auto value = TracedValue::Create(); in CpuProfile()
424 void BuildNodeValue(const ProfileNode* node, TracedValue* value) { in BuildNodeValue()
454 auto value = TracedValue::Create(); in StreamPendingTraceEvents()
498 auto value = TracedValue::Create(); in FinishProfile()
/external/v8/src/
Dcounters.cc280 void RuntimeCallCounter::Dump(v8::tracing::TracedValue* value) { in Dump()
387 void RuntimeCallStats::Dump(v8::tracing::TracedValue* value) { in Dump()

12