Searched refs:trace_ (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/base/debug/ |
H A D | stack_trace.cc | 19 count = std::min(count, arraysize(trace_)); in StackTrace() 20 if (count) memcpy(trace_, trace, count * sizeof(trace_[0])); in StackTrace() 28 if (count_) return trace_; in Addresses()
|
H A D | stack_trace_win.cc | 173 count_ = CaptureStackBackTrace(0, arraysize(trace_), trace_, nullptr); in StackTrace() 222 count_ < arraysize(trace_)) { in InitTrace() 223 trace_[count_++] = reinterpret_cast<void*>(stack_frame.AddrPC.Offset); in InitTrace() 226 for (size_t i = count_; i < arraysize(trace_); ++i) trace_[i] = nullptr; in InitTrace() 237 (*os) << "\t" << trace_[i] << "\n"; in OutputToStream() 243 OutputTraceToStream(trace_, count_, os); in OutputToStream()
|
H A D | stack_trace_android.cc | 73 StackCrawlState state(reinterpret_cast<uintptr_t*>(trace_), kMaxTraces); in StackTrace() 85 *os << "#" << std::setw(2) << i << trace_[i] << "\n"; in OutputToStream() local
|
H A D | stack_trace_posix.cc | 371 count_ = static_cast<size_t>(backtrace(trace_, arraysize(trace_))); in StackTrace() 383 ProcessBacktrace(trace_, count_, &handler); in Print() 390 ProcessBacktrace(trace_, count_, &handler); in OutputToStream()
|
H A D | stack_trace_fuchsia.cc | 35 *os << "#" << std::setw(2) << i << trace_[i] << "\n"; in OutputToStream() local
|
H A D | stack_trace.h | 87 void* trace_[kMaxTraces]; member in v8::base::debug::StackTrace 89 // The number of valid frames in |trace_|.
|
/third_party/node/deps/v8/include/v8-include/cppgc/internal/ |
H A D | persistent-node.h | 36 trace_ = trace; in InitializeAsUsedNode() 41 trace_ = nullptr; in InitializeAsFreeNode() 56 trace_(root_visitor, owner_); in Trace() 59 bool IsUsed() const { return trace_; } in IsUsed() 68 // If trace_ != nullptr, owner_ points to the corresponding Persistent handle. 74 TraceRootCallback trace_ = nullptr; member in cppgc::internal::final
|
/third_party/node/deps/v8/include/cppgc/internal/ |
H A D | persistent-node.h | 38 trace_ = trace; in InitializeAsUsedNode() 43 trace_ = nullptr; in InitializeAsFreeNode() 58 trace_(visitor, owner_); in Trace() 61 bool IsUsed() const { return trace_; } in IsUsed() 70 // If trace_ != nullptr, owner_ points to the corresponding Persistent handle. 76 TraceCallback trace_ = nullptr; member in cppgc::internal::final
|
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | ftdebug.h | 71 #define FT_TRACE_DEF( x ) trace_ ## x , 157 #define FT_TRACE_COMP_( x ) trace_ ## x
|
/third_party/littlefs/scripts/ |
H A D | bench.py | 752 def run_stage(name, runner_, ids, stdout_, trace_, output_, **args):
|
H A D | test.py | 769 def run_stage(name, runner_, ids, stdout_, trace_, output_, **args):
|
Completed in 7 milliseconds