Home | History | Annotate | Download | only in runtime

Lines Matching full:trace

21 #include <cutils/trace.h>
1292 // Allocate method trace with an extra slot that will hold the PC trace
1304 // Save PC trace in last element of method trace, also places it into the
1309 self_->StartAssertNoThreadSuspension("Building internal stack trace");
1348 // Current position down stack trace.
1352 // An array of the methods on the stack, the last entry is a reference to the PC trace.
1363 // Build internal stack trace.
1370 mirror::ObjectArray<mirror::Object>* trace = build_trace_visitor.GetInternalStackTrace();
1372 for (int32_t i = 0; i < trace->GetLength(); ++i) {
1373 CHECK(trace->Get(i) != NULL);
1376 return soa.AddLocalReference<jobjectArray>(trace);
1383 // Decode the internal stack trace into the depth, method trace and PC trace