HomeSort by relevance Sort by last modified time
    Searched refs:trace_event (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/v8/src/libplatform/tracing/
trace-writer.cc 9 #include "base/trace_event/common/trace_event_common.h"
128 void JSONTraceWriter::AppendTraceEvent(TraceObject* trace_event) {
131 stream_ << "{\"pid\":" << trace_event->pid()
132 << ",\"tid\":" << trace_event->tid()
133 << ",\"ts\":" << trace_event->ts()
134 << ",\"tts\":" << trace_event->tts() << ",\"ph\":\""
135 << trace_event->phase() << "\",\"cat\":\""
137 trace_event->category_enabled_flag())
138 << "\",\"name\":\"" << trace_event->name()
139 << "\",\"dur\":" << trace_event->duration(
    [all...]
trace-writer.h 18 void AppendTraceEvent(TraceObject* trace_event) override;
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context.h 15 namespace trace_event { namespace in namespace:base
109 } // namespace trace_event
115 struct BASE_EXPORT hash<base::trace_event::StackFrame> {
116 size_t operator()(const base::trace_event::StackFrame& frame) const;
120 struct BASE_EXPORT hash<base::trace_event::Backtrace> {
121 size_t operator()(const base::trace_event::Backtrace& backtrace) const;
125 struct BASE_EXPORT hash<base::trace_event::AllocationContext> {
126 size_t operator()(const base::trace_event::AllocationContext& context) const;
memory_infra_background_whitelist.h 16 namespace trace_event { namespace in namespace:base
30 } // namespace trace_event
heap_profiler.h 9 #include "base/trace_event/heap_profiler_allocation_context_tracker.h"
13 // trace_event.h and are specific to heap profiler. This file also defines
44 using base::trace_event::AllocationContextTracker;
53 using base::trace_event::AllocationContextTracker;
68 using base::trace_event::AllocationContextTracker;
77 using base::trace_event::AllocationContextTracker;
heap_profiler_type_name_deduplicator.h 13 #include "base/trace_event/trace_event_impl.h"
16 namespace trace_event { namespace in namespace:base
42 } // namespace trace_event
memory_dump_provider.h 11 #include "base/trace_event/memory_dump_request_args.h"
14 namespace trace_event { namespace in namespace:base
61 } // namespace trace_event
trace_log_constants.cc 5 #include "base/trace_event/trace_log.h"
8 namespace trace_event { namespace in namespace:base
26 } // namespace trace_event
heap_profiler_allocation_context.cc 5 #include "base/trace_event/heap_profiler_allocation_context.h"
13 namespace trace_event { namespace in namespace:base
51 } // namespace trace_event
55 using base::trace_event::AllocationContext;
56 using base::trace_event::Backtrace;
57 using base::trace_event::StackFrame;
memory_allocator_dump_guid.h 15 namespace trace_event { namespace in namespace:base
48 } // namespace trace_event
memory_dump_session_state.cc 5 #include "base/trace_event/memory_dump_session_state.h"
8 namespace trace_event { namespace in namespace:base
31 } // namespace trace_event
trace_config_memory_test_util.h 9 #include "base/trace_event/memory_dump_manager.h"
12 namespace trace_event { namespace in namespace:base
100 } // namespace trace_event
trace_event.h 20 #include "base/trace_event/common/trace_event_common.h"
21 #include "base/trace_event/heap_profiler.h"
22 #include "base/trace_event/trace_event_system_stats_monitor.h"
23 #include "base/trace_event/trace_log.h"
77 (base::trace_event::TraceLog::ENABLED_FOR_RECORDING | \
78 base::trace_event::TraceLog::ENABLED_FOR_EVENT_CALLBACK | \
79 base::trace_event::TraceLog::ENABLED_FOR_ETW_EXPORT))
95 base::trace_event::TraceLog::GetCategoryGroupEnabled
101 base::trace_event::TraceLog::GetInstance()->GetNumTracesRecorded
104 // base::trace_event::TraceEventHandle TRACE_EVENT_API_ADD_TRACE_EVENT
1060 namespace trace_event { namespace in namespace:base
    [all...]
trace_event_synthetic_delay.h 39 #include "base/trace_event/trace_event.h"
69 namespace trace_event { namespace in namespace:base
142 } // namespace trace_event
155 base::trace_event::TraceEventSyntheticDelay* delay_impl_;
162 TRACE_EVENT_API_CLASS_EXPORT base::trace_event::TraceEventSyntheticDelay*
malloc_dump_provider.h 15 #include "base/trace_event/memory_dump_provider.h"
24 namespace trace_event { namespace in namespace:base
66 } // namespace trace_event
memory_allocator_dump_guid.cc 5 #include "base/trace_event/memory_allocator_dump_guid.h"
12 namespace trace_event { namespace in namespace:base
37 } // namespace trace_event
memory_dump_request_args.cc 5 #include "base/trace_event/memory_dump_request_args.h"
10 namespace trace_event { namespace in namespace:base
54 } // namespace trace_event
memory_dump_request_args.h 18 namespace trace_event { namespace in namespace:base
81 } // namespace trace_event
memory_dump_session_state.h 11 #include "base/trace_event/heap_profiler_stack_frame_deduplicator.h"
12 #include "base/trace_event/heap_profiler_type_name_deduplicator.h"
13 #include "base/trace_event/trace_config.h"
16 namespace trace_event { namespace in namespace:base
66 } // namespace trace_event
process_memory_dump.h 17 #include "base/trace_event/memory_allocator_dump.h"
18 #include "base/trace_event/memory_allocator_dump_guid.h"
19 #include "base/trace_event/memory_dump_request_args.h"
20 #include "base/trace_event/memory_dump_session_state.h"
21 #include "base/trace_event/process_memory_maps.h"
22 #include "base/trace_event/process_memory_totals.h"
32 namespace trace_event { namespace in namespace:base
122 void DumpHeapUsage(const base::hash_map<base::trace_event::AllocationContext,
123 base::trace_event::AllocationMetrics>&
125 base::trace_event::TraceEventMemoryOverhead& overhead
    [all...]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_event_unittest.py 15 from py_trace_event import trace_event
34 trace_event.trace_enable(self._log_path)
38 trace_event.trace_disable()
41 orig_impl = trace_event.trace_event_impl
43 trace_event.trace_event_impl = None
44 self.assertFalse(trace_event.trace_can_enable())
46 trace_event.trace_event_impl = orig_impl
49 self.assertTrue(trace_event.trace_can_enable())
52 self.assertFalse(trace_event.trace_is_enabled())
56 self.assertTrue(trace_event.trace_is_enabled()
    [all...]
  /external/libmojo/base/trace_event/
java_heap_dump_provider_android.h 10 #include "base/trace_event/memory_dump_provider.h"
13 namespace trace_event { namespace in namespace:base
33 } // namespace trace_event
  /external/chromium-trace/catapult/telemetry/telemetry/story/
shared_state.py 5 from py_trace_event import trace_event
14 __metaclass__ = trace_event.TracedMetaClass
  /external/libchrome/base/test/
test_pending_task.h 13 #include "base/trace_event/trace_event_argument.h"
61 void AsValueInto(base::trace_event::TracedValue* state) const;
62 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> AsValue() const;
test_pending_task.cc 39 void TestPendingTask::AsValueInto(base::trace_event::TracedValue* state) const {
55 std::unique_ptr<base::trace_event::ConvertableToTraceFormat>
57 std::unique_ptr<base::trace_event::TracedValue> state(
58 new base::trace_event::TracedValue());

Completed in 558 milliseconds

1 2 3 4