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

  /art/runtime/gc/accounting/
card_table.cc 90 : mem_map_(mem_map), biased_begin_(biased_begin), offset_(offset) {
102 mem_map_->MadviseDontNeedAndZero();
111 byte* begin = mem_map_->Begin() + offset_;
112 byte* end = mem_map_->End();
card_table.h 133 byte* begin = mem_map_->Begin() + offset_;
134 byte* end = mem_map_->End();
144 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::CardTable
147 // Card table doesn't begin at the beginning of the mem_map_, instead it is displaced by offset
atomic_stack.h 47 DCHECK(mem_map_.get() != nullptr);
52 mem_map_->MadviseDontNeedAndZero();
213 mem_map_.reset(MemMap::MapAnonymous(name_.c_str(), NULL, capacity_ * sizeof(T),
215 CHECK(mem_map_.get() != NULL) << "couldn't allocate mark stack.\n" << error_msg;
216 byte* addr = mem_map_->Begin();
226 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::AtomicStack
card_table-inl.h 203 << " begin: " << reinterpret_cast<void*>(mem_map_->Begin() + offset_)
204 << " end: " << reinterpret_cast<void*>(mem_map_->End());
220 << " begin: " << reinterpret_cast<void*>(mem_map_->Begin() + offset_)
221 << " end: " << reinterpret_cast<void*>(mem_map_->End());
space_bitmap.cc 48 : mem_map_(mem_map), bitmap_begin_(bitmap_begin), bitmap_size_(bitmap_size),
93 mem_map_->MadviseDontNeedAndZero();
space_bitmap.h 214 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::SpaceBitmap
  /art/runtime/gc/space/
space.h 360 return mem_map_.get();
364 return mem_map_.get();
368 return mem_map_.release();
375 mem_map_(mem_map) {
379 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::space::MemMapSpace
large_object_space.h 182 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::space::FINAL
dlmalloc_space.cc 297 mspace_ = CreateMspace(mem_map_->Begin(), starting_size_, initial_size_);
rosalloc_space.cc 354 rosalloc_ = CreateRosAlloc(mem_map_->Begin(), starting_size_, initial_size_,
large_object_space.cc 296 mem_map_(mem_map),
  /art/runtime/
dex_file.cc 147 if (mem_map_.get() == NULL) {
150 return mem_map_->GetProtect();
160 if (mem_map_.get() == NULL) {
163 return mem_map_->Protect(PROT_READ | PROT_WRITE);
169 if (mem_map_.get() == NULL) {
172 return mem_map_->Protect(PROT_READ);
352 mem_map_(mem_map),
    [all...]
oat_file.h 331 std::unique_ptr<MemMap> mem_map_; member in class:art::OatFile
dex_file.h 972 std::unique_ptr<MemMap> mem_map_; member in class:art::DexFile
    [all...]

Completed in 124 milliseconds