Searched refs:depth_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | thread_pool_test.cc | 110 depth_(depth) {} in TreeTask() 113 if (depth_ > 1) { in Run() 114 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1)); in Run() 115 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1)); in Run() 128 const int depth_; member in art::TreeTask
|
D | profiler.cc | 65 : StackVisitor(thread, NULL), stack_(stack), max_depth_(max_depth), depth_(0) { in BoundedStackVisitor() 75 ++depth_; in VisitFrame() 76 if (depth_ < max_depth_) { in VisitFrame() 86 uint32_t depth_; member in art::BoundedStackVisitor
|
D | thread.cc | 1378 depth_(0), skip_depth_(0), skipping_(true) {} in SHARED_LOCKS_REQUIRED() 1391 ++depth_; in VisitFrame() 1400 return depth_; in GetDepth() 1408 uint32_t depth_; member in art::CountStackDepthVisitor
|
D | debugger.cc | 2305 : StackVisitor(thread, NULL), depth_(0), in GetThreadFrames() 2316 if (depth_ >= start_frame_ + frame_count_) { in GetThreadFrames() 2319 if (depth_ >= start_frame_) { in GetThreadFrames() 2323 … VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; in GetThreadFrames() 2327 ++depth_; in GetThreadFrames() 2332 size_t depth_; in GetThreadFrames() member in art::Dbg::GetThreadFrames::GetFrameVisitor
|