Searched refs:stack_ (Results 1 - 4 of 4) sorted by last modified time

/art/runtime/
H A Dprofiler.cc65 : StackVisitor(thread, NULL), stack_(stack), max_depth_(max_depth), depth_(0) {
74 stack_->push_back(std::make_pair(m, dex_pc_));
84 std::vector<std::pair<mirror::ArtMethod*, uint32_t>>* stack_; member in class:art::BoundedStackVisitor
H A Dthread_pool.cc33 stack_.reset(MemMap::MapAnonymous(name.c_str(), nullptr, stack_size, PROT_READ | PROT_WRITE,
35 CHECK(stack_.get() != nullptr) << error_msg;
39 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
H A Dthread_pool.h43 DCHECK(stack_.get() != nullptr);
44 return stack_->Size();
56 std::unique_ptr<MemMap> stack_; member in class:art::ThreadPoolWorker
H A Ddebugger.cc150 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) {
174 return &stack_[index];
181 AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have NULL method. member in class:art::AllocRecord

Completed in 69 milliseconds