Home
last modified time | relevance | path

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

/art/runtime/
Dtrace.cc63 method_trace_(Trace::AllocStackTrace()) {} in BuildStackTraceVisitor()
93 TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
95 Trace* volatile Trace::the_trace_ = nullptr;
96 pthread_t Trace::sampling_pthread_ = 0U;
97 std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
106 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) { in DecodeTraceMethod()
111 uint32_t Trace::EncodeTraceMethod(ArtMethod* method) { in EncodeTraceMethod()
127 uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) { in EncodeTraceMethodAndAction()
133 std::vector<ArtMethod*>* Trace::AllocStackTrace() { in AllocStackTrace()
138 void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) { in FreeStackTrace()
[all …]
Dtrace.h96 class Trace FINAL : public instrumentation::InstrumentationListener {
113 ~Trace();
192 Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
248 static Trace* volatile the_trace_ GUARDED_BY(Locks::trace_lock_);
309 DISALLOW_COPY_AND_ASSIGN(Trace);
Druntime.cc176 Trace::TraceMode trace_mode;
177 Trace::TraceOutputMode trace_output_mode;
317 Trace::Shutdown(); in ~Runtime()
770 Trace::Start(trace_config_->trace_file.c_str(), in Start()
1315 trace_config_->trace_mode = Trace::TraceMode::kMethodTracing; in Init()
1317 Trace::TraceOutputMode::kStreaming : in Init()
1318 Trace::TraceOutputMode::kFile; in Init()
1322 Trace::SetDefaultClockSource(runtime_options.GetOrDefault(Opt::ProfileClock)); in Init()
Druntime.h99 class Trace; variable
Dparsed_options.cc518 Trace::SetDefaultClockSource(args.GetOrDefault(M::ProfileClock)); in DoParse()
Dthread_list.cc1420 Trace::StoreExitingThreadInfo(self); in Unregister()
Dclass_linker.cc1951 const bool tracing_enabled = Trace::IsTracingEnabled(); in VisitClassRoots()
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc248 if (Trace::GetMethodTracingMode() != TracingMode::kTracingInactive) { in ZygoteHooks_nativePreFork()
250 Trace::Pause(); in ZygoteHooks_nativePreFork()
269 if (Trace::GetMethodTracingMode() != TracingMode::kTracingInactive) { in ZygoteHooks_nativePostForkChild()
270 Trace::TraceOutputMode output_mode = Trace::GetOutputMode(); in ZygoteHooks_nativePostForkChild()
271 Trace::TraceMode trace_mode = Trace::GetMode(); in ZygoteHooks_nativePostForkChild()
272 size_t buffer_size = Trace::GetBufferSize(); in ZygoteHooks_nativePostForkChild()
275 Trace::Abort(); in ZygoteHooks_nativePostForkChild()
279 if (output_mode == Trace::TraceOutputMode::kStreaming) { in ZygoteHooks_nativePostForkChild()
297 Trace::Start(trace_file.c_str(), in ZygoteHooks_nativePostForkChild()
Ddalvik_system_VMDebug.cc89 Trace::Start("[DDMS]", -1, bufferSize, flags, Trace::TraceOutputMode::kDDMS, in VMDebug_startMethodTracingDdmsImpl()
90 samplingEnabled ? Trace::TraceMode::kSampling : Trace::TraceMode::kMethodTracing, in VMDebug_startMethodTracingDdmsImpl()
115 Trace::TraceOutputMode outputMode = streamingOutput in VMDebug_startMethodTracingFd()
116 ? Trace::TraceOutputMode::kStreaming in VMDebug_startMethodTracingFd()
117 : Trace::TraceOutputMode::kFile; in VMDebug_startMethodTracingFd()
118 Trace::Start(traceFilename.c_str(), fd, bufferSize, flags, outputMode, in VMDebug_startMethodTracingFd()
119 samplingEnabled ? Trace::TraceMode::kSampling : Trace::TraceMode::kMethodTracing, in VMDebug_startMethodTracingFd()
130 Trace::Start(traceFilename.c_str(), -1, bufferSize, flags, Trace::TraceOutputMode::kFile, in VMDebug_startMethodTracingFilename()
131 samplingEnabled ? Trace::TraceMode::kSampling : Trace::TraceMode::kMethodTracing, in VMDebug_startMethodTracingFilename()
136 return Trace::GetMethodTracingMode(); in VMDebug_getMethodTracingMode()
[all …]
/art/test/044-proxy/src/
DBasicTest.java54 Trace trace = (Trace) proxy; in main()
103 Quads.class, Colors.class, Trace.class); in createProxy()
162 interface Trace { interface
259 if (method.getDeclaringClass() == Trace.class) { in invoke()
274 if (method.getDeclaringClass() == Trace.class) { in invoke()
/art/test/044-proxy/
Dexpected.txt53 Proxy interfaces: [interface Quads, interface Colors, interface Trace]