HomeSort by relevance Sort by last modified time
    Searched refs:trace_ (Results 1 - 20 of 20) sorted by null

  /external/v8/src/base/debug/
stack_trace.cc 19 count = std::min(count, arraysize(trace_));
20 if (count) memcpy(trace_, trace, count * sizeof(trace_[0]));
28 if (count_) return trace_;
stack_trace.h 87 void* trace_[kMaxTraces]; member in class:v8::base::debug::StackTrace
89 // The number of valid frames in |trace_|.
stack_trace_android.cc 73 StackCrawlState state(reinterpret_cast<uintptr_t*>(trace_), kMaxTraces);
85 *os << "#" << std::setw(2) << i << trace_[i] << "\n"; local
stack_trace_win.cc 177 count_ = CaptureStackBackTrace(0, arraysize(trace_), trace_, NULL);
221 count_ < arraysize(trace_)) {
222 trace_[count_++] = reinterpret_cast<void*>(stack_frame.AddrPC.Offset);
225 for (size_t i = count_; i < arraysize(trace_); ++i) trace_[i] = NULL;
236 (*os) << "\t" << trace_[i] << "\n";
242 OutputTraceToStream(trace_, count_, os);
stack_trace_posix.cc 371 count_ = static_cast<size_t>(backtrace(trace_, arraysize(trace_)));
383 ProcessBacktrace(trace_, count_, &handler);
390 ProcessBacktrace(trace_, count_, &handler);
  /external/libchrome/base/debug/
stack_trace.cc 24 count = std::min(count, arraysize(trace_));
26 memcpy(trace_, trace, count * sizeof(trace_[0]));
36 return trace_;
stack_trace.h 98 void* trace_[kMaxTraces]; member in class:base::debug::StackTrace
100 // The number of valid frames in |trace_|.
stack_trace_posix.cc 729 count_ = base::saturated_cast<size_t>(backtrace(trace_, arraysize(trace_)));
741 ProcessBacktrace(trace_, count_, &handler);
748 ProcessBacktrace(trace_, count_, &handler);
  /art/runtime/gc/
allocation_record.h 160 : byte_count_(count), klass_(klass), trace_(std::move(trace)) {}
163 return trace_.GetDepth();
167 return &trace_;
175 return trace_.GetTid();
190 return trace_.GetStackElement(index);
198 AllocRecordStackTrace trace_; member in class:art::gc::AllocRecord
allocation_record.cc 194 trace_(trace_out) {}
199 if (trace_->GetDepth() >= max_depth_) {
206 trace_->AddStackElement(AllocRecordStackTraceElement(m, GetDexPc()));
213 AllocRecordStackTrace* const trace_; member in class:art::gc::AllocRecordStackVisitor
  /external/libmojo/base/debug/
stack_trace_android.cc 71 StackCrawlState state(reinterpret_cast<uintptr_t*>(trace_), kMaxTraces);
104 uintptr_t address = reinterpret_cast<uintptr_t>(trace_[i]) - 1;
  /external/freetype/include/freetype/internal/
ftdebug.h 54 #define FT_TRACE_DEF( x ) trace_ ## x ,
  /external/pdfium/third_party/freetype/include/freetype/internal/
ftdebug.h 54 #define FT_TRACE_DEF( x ) trace_ ## x ,
  /external/v8/tools/clang/blink_gc_plugin/
CheckTraceVisitor.h 53 clang::CXXMethodDecl* trace_; member in class:CheckTraceVisitor
CheckTraceVisitor.cpp 16 : trace_(trace),
95 if (trace_->getName() == kTraceImplName)
97 if (trace_->getName() == kTraceAfterDispatchImplName)
103 return name == trace_->getName();
360 return !trace_;
  /art/runtime/
java_vm_ext.cc 458 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)),
554 if (trace_.empty() && !VLOG_IS_ON(third_party_jni)) {
559 if (!trace_.empty() && class_name.find(trace_) != std::string::npos) {
    [all...]
java_vm_ext.h 224 const std::string trace_; member in class:art::JavaVMExt
thread.cc 2533 mirror::ObjectArray<mirror::Object>* trace_ = nullptr; member in class:BuildInternalStackTraceVisitor
    [all...]
  /external/v8/src/crankshaft/
hydrogen.h 2975 StringStream trace_; member in class:v8::internal::final
    [all...]
hydrogen.cc     [all...]

Completed in 1723 milliseconds