Home
last modified time | relevance | path

Searched refs:Trace (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dtrace.cc89 method_trace_(Trace::AllocStackTrace()) {} in BuildStackTraceVisitor()
117 TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
119 Trace* volatile Trace::the_trace_ = NULL;
120 pthread_t Trace::sampling_pthread_ = 0U;
121 std::unique_ptr<std::vector<mirror::ArtMethod*>> Trace::temp_stack_trace_;
138 std::vector<mirror::ArtMethod*>* Trace::AllocStackTrace() { in AllocStackTrace()
146 void Trace::FreeStackTrace(std::vector<mirror::ArtMethod*>* stack_trace) { in FreeStackTrace()
151 void Trace::SetDefaultClockSource(TraceClockSource clock_source) { in SetDefaultClockSource()
171 bool Trace::UseThreadCpuClock() { in UseThreadCpuClock()
176 bool Trace::UseWallClock() { in UseWallClock()
[all …]
Dtrace.h48 class Trace FINAL : public instrumentation::InstrumentationListener {
111 explicit Trace(File* trace_file, int buffer_size, int flags, bool sampling_enabled);
131 static Trace* volatile the_trace_ GUARDED_BY(Locks::trace_lock_);
174 DISALLOW_COPY_AND_ASSIGN(Trace);
Dparsed_options.cc554 Trace::SetDefaultClockSource(kTraceClockSourceThreadCpu); in Parse()
556 Trace::SetDefaultClockSource(kTraceClockSourceWall); in Parse()
558 Trace::SetDefaultClockSource(kTraceClockSourceDual); in Parse()
Druntime.cc179 Trace::Shutdown(); in ~Runtime()
851 Trace::SetDefaultClockSource(options->profile_clock_source_); in Init()
855 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0, in Init()
Druntime.h71 class Trace; variable
Dthread_list.cc894 Trace::StoreExitingThreadInfo(self); in Unregister()
/art/test/044-proxy/src/
DBasicTest.java54 Trace trace = (Trace) proxy; in main()
102 new Class[] { Quads.class, Colors.class, Trace.class }); in createProxy()
162 interface Trace { interface
259 if (method.getDeclaringClass() == Trace.class) { in invoke()
273 if (method.getDeclaringClass() == Trace.class) { in invoke()
/art/runtime/native/
Ddalvik_system_VMDebug.cc80 Trace::Start("[DDMS]", -1, bufferSize, flags, true, samplingEnabled, intervalUs); in VMDebug_startMethodTracingDdmsImpl()
104 Trace::Start(traceFilename.c_str(), fd, bufferSize, flags, false, samplingEnabled, intervalUs); in VMDebug_startMethodTracingFd()
114 Trace::Start(traceFilename.c_str(), -1, bufferSize, flags, false, samplingEnabled, intervalUs); in VMDebug_startMethodTracingFilename()
118 return Trace::GetMethodTracingMode(); in VMDebug_getMethodTracingMode()
122 Trace::Stop(); in VMDebug_stopMethodTracing()
/art/test/044-proxy/
Dexpected.txt53 Proxy interfaces: [interface Quads, interface Colors, interface Trace]