Searched defs:TraceLog (Results 1 - 4 of 4) sorted by relevance

/external/chromium/base/debug/
H A Dtrace_event.cc32 TraceLog* TraceLog::GetInstance() {
33 return Singleton<TraceLog, DefaultSingletonTraits<TraceLog> >::get();
37 bool TraceLog::IsTracing() {
38 return TraceLog::GetInstance()->enabled_;
42 bool TraceLog::StartTracing() {
43 return TraceLog::GetInstance()->Start();
47 void TraceLog::StopTracing() {
48 return TraceLog
95 TraceLog::TraceLog() : enabled_(false), log_file_(NULL) { function in class:base::debug::TraceLog
[all...]
H A Dtrace_event.h46 // Use the following macros rather than using the TraceLog class directly as the
55 base::debug::TraceLog::GetInstance()->Trace( \
57 base::debug::TraceLog::EVENT_BEGIN, \
66 base::debug::TraceLog::GetInstance()->Trace( \
68 base::debug::TraceLog::EVENT_END, \
76 base::debug::TraceLog::GetInstance()->Trace( \
78 base::debug::TraceLog::EVENT_INSTANT, \
91 class TraceLog { class in namespace:base::debug
99 static TraceLog* GetInstance();
125 friend struct DefaultSingletonTraits<TraceLog>;
[all...]
H A Dtrace_event_win.cc30 TraceLog::TraceLog() : EtwTraceProvider(kChromeTraceProviderName) { function in class:base::debug::TraceLog
34 TraceLog* TraceLog::GetInstance() {
35 return Singleton<TraceLog, StaticMemorySingletonTraits<TraceLog> >::get();
38 bool TraceLog::StartTracing() {
42 void TraceLog::TraceEvent(const char* name,
56 case TraceLog::EVENT_BEGIN:
59 case TraceLog
[all...]
H A Dtrace_event_win.h16 base::debug::TraceLog::Trace( \
18 base::debug::TraceLog::EVENT_BEGIN, \
23 base::debug::TraceLog::Trace( \
25 base::debug::TraceLog::EVENT_END, \
30 base::debug::TraceLog::Trace( \
32 base::debug::TraceLog::EVENT_INSTANT, \
45 class BASE_API TraceLog : public base::win::EtwTraceProvider { class in namespace:base::debug
90 static TraceLog* GetInstance();
115 friend struct StaticMemorySingletonTraits<TraceLog>;
116 TraceLog();
[all...]

Completed in 113 milliseconds