Searched refs:Trace (Results 1 – 11 of 11) sorted by relevance
/art/runtime/ |
D | trace.cc | 57 method_trace_(Trace::AllocStackTrace()) {} in BuildStackTraceVisitor() 87 TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource; 89 Trace* volatile Trace::the_trace_ = nullptr; 90 pthread_t Trace::sampling_pthread_ = 0U; 91 std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_; 100 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) { in DecodeTraceMethod() 105 uint32_t Trace::EncodeTraceMethod(ArtMethod* method) { in EncodeTraceMethod() 121 uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) { in EncodeTraceMethodAndAction() 127 std::vector<ArtMethod*>* Trace::AllocStackTrace() { in AllocStackTrace() 132 void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) { in FreeStackTrace() [all …]
|
D | trace.h | 94 class Trace FINAL : public instrumentation::InstrumentationListener { 111 ~Trace(); 190 Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags, 242 static Trace* volatile the_trace_ GUARDED_BY(Locks::trace_lock_); 303 DISALLOW_COPY_AND_ASSIGN(Trace);
|
D | runtime.cc | 153 Trace::TraceMode trace_mode; 154 Trace::TraceOutputMode trace_output_mode; 265 Trace::Shutdown(); in ~Runtime() 645 Trace::Start(trace_config_->trace_file.c_str(), in Start() 1204 trace_config_->trace_mode = Trace::TraceMode::kMethodTracing; in Init() 1206 Trace::TraceOutputMode::kStreaming : in Init() 1207 Trace::TraceOutputMode::kFile; in Init() 1231 Trace::SetDefaultClockSource(runtime_options.GetOrDefault(Opt::ProfileClock)); in Init()
|
D | runtime.h | 93 class Trace; variable
|
D | parsed_options.cc | 507 Trace::SetDefaultClockSource(args.GetOrDefault(M::ProfileClock)); in DoParse()
|
D | thread_list.cc | 1248 Trace::StoreExitingThreadInfo(self); in Unregister()
|
D | class_linker.cc | 1825 const bool tracing_enabled = Trace::IsTracingEnabled(); in VisitClassRoots()
|
/art/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 149 if (Trace::GetMethodTracingMode() != TracingMode::kTracingInactive) { in ZygoteHooks_nativePreFork() 151 Trace::Pause(); in ZygoteHooks_nativePreFork() 170 if (Trace::GetMethodTracingMode() != TracingMode::kTracingInactive) { in ZygoteHooks_nativePostForkChild() 171 Trace::TraceOutputMode output_mode = Trace::GetOutputMode(); in ZygoteHooks_nativePostForkChild() 172 Trace::TraceMode trace_mode = Trace::GetMode(); in ZygoteHooks_nativePostForkChild() 173 size_t buffer_size = Trace::GetBufferSize(); in ZygoteHooks_nativePostForkChild() 176 Trace::Abort(); in ZygoteHooks_nativePostForkChild() 180 if (output_mode == Trace::TraceOutputMode::kStreaming) { in ZygoteHooks_nativePostForkChild() 193 Trace::Start(trace_file.c_str(), in ZygoteHooks_nativePostForkChild()
|
D | dalvik_system_VMDebug.cc | 86 Trace::Start("[DDMS]", -1, bufferSize, flags, Trace::TraceOutputMode::kDDMS, in VMDebug_startMethodTracingDdmsImpl() 87 samplingEnabled ? Trace::TraceMode::kSampling : Trace::TraceMode::kMethodTracing, in VMDebug_startMethodTracingDdmsImpl() 111 Trace::Start(traceFilename.c_str(), fd, bufferSize, flags, Trace::TraceOutputMode::kFile, in VMDebug_startMethodTracingFd() 112 samplingEnabled ? Trace::TraceMode::kSampling : Trace::TraceMode::kMethodTracing, in VMDebug_startMethodTracingFd() 123 Trace::Start(traceFilename.c_str(), -1, bufferSize, flags, Trace::TraceOutputMode::kFile, in VMDebug_startMethodTracingFilename() 124 samplingEnabled ? Trace::TraceMode::kSampling : Trace::TraceMode::kMethodTracing, in VMDebug_startMethodTracingFilename() 129 return Trace::GetMethodTracingMode(); in VMDebug_getMethodTracingMode() 133 Trace::Stop(); in VMDebug_stopMethodTracing()
|
/art/test/044-proxy/src/ |
D | BasicTest.java | 54 Trace trace = (Trace) proxy; in main() 103 new Class[] { Quads.class, Colors.class, Trace.class }); in createProxy() 164 interface Trace { interface 261 if (method.getDeclaringClass() == Trace.class) { in invoke() 276 if (method.getDeclaringClass() == Trace.class) { in invoke()
|
/art/test/044-proxy/ |
D | expected.txt | 53 Proxy interfaces: [interface Quads, interface Colors, interface Trace]
|