Searched refs:stack_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | thread_pool.h | 43 DCHECK(stack_.get() != nullptr); in GetStackSize() 44 return stack_->Size(); in GetStackSize() 56 std::unique_ptr<MemMap> stack_; variable
|
D | thread_pool.cc | 33 stack_.reset(MemMap::MapAnonymous(name.c_str(), nullptr, stack_size, PROT_READ | PROT_WRITE, in ThreadPoolWorker() 35 CHECK(stack_.get() != nullptr) << error_msg; in ThreadPoolWorker() 39 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason); in ThreadPoolWorker()
|
D | profiler.cc | 65 : StackVisitor(thread, NULL), stack_(stack), max_depth_(max_depth), depth_(0) { in BoundedStackVisitor() 74 stack_->push_back(std::make_pair(m, dex_pc_)); in VisitFrame() 84 std::vector<std::pair<mirror::ArtMethod*, uint32_t>>* stack_; member in art::BoundedStackVisitor
|
D | debugger.cc | 150 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) { in GetDepth() 174 return &stack_[index]; in StackElement() 181 …AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have NULL metho… member in art::AllocRecord
|