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

  /art/runtime/gc/space/
zygote_space.h 65 uint64_t GetBytesAllocated() {
bump_pointer_space.h 117 uint64_t GetBytesAllocated() REQUIRES_SHARED(Locks::mutator_lock_)
dlmalloc_space.h 125 uint64_t GetBytesAllocated() OVERRIDE;
malloc_space.h 125 virtual uint64_t GetBytesAllocated() = 0;
bump_pointer_space.cc 161 uint64_t BumpPointerSpace::GetBytesAllocated() {
large_object_space.h 52 uint64_t GetBytesAllocated() OVERRIDE {
large_object_space_test.cc 120 EXPECT_EQ(0U, los->GetBytesAllocated());
rosalloc_space.h 118 uint64_t GetBytesAllocated() OVERRIDE;
space.h 197 virtual uint64_t GetBytesAllocated() = 0;
dlmalloc_space.cc 266 uint64_t DlMallocSpace::GetBytesAllocated() {
rosalloc_space.cc 291 uint64_t RosAllocSpace::GetBytesAllocated() {
region_space.h 142 uint64_t GetBytesAllocated() REQUIRES(!region_lock_) {
  /art/runtime/base/
arena_allocator.cc 342 size_t ArenaPool::GetBytesAllocated() const {
346 total += arena->GetBytesAllocated();
389 total += cur_arena->GetBytesAllocated();
495 DCHECK_EQ(bytes, arena_head_->next_->GetBytesAllocated());
arena_allocator.h 224 size_t GetBytesAllocated() const {
258 size_t GetBytesAllocated() const REQUIRES(!lock_);
  /art/runtime/native/
dalvik_system_VMDebug.cc 396 zygoteUsed += zygote_space->GetBytesAllocated();
401 allocUsed += malloc_space->GetBytesAllocated();
405 allocUsed += bump_pointer_space->GetBytesAllocated();
410 largeObjectsSize += space->AsLargeObjectSpace()->GetBytesAllocated();
  /art/runtime/gc/
heap.h 498 size_t GetBytesAllocated() const {
529 return std::max(GetBytesAllocated(), growth_limit_);
538 return max_allowed_footprint_ - GetBytesAllocated();
543 return growth_limit_ - GetBytesAllocated();
    [all...]
heap.cc     [all...]
  /art/runtime/gc/collector/
semi_space.cc 259 const int64_t from_bytes = from_space_->GetBytesAllocated();
    [all...]
concurrent_copying.cc 430 cc->from_space_num_bytes_at_first_pause_ = cc->region_space_->GetBytesAllocated();
    [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /art/runtime/
debugger.cc     [all...]

Completed in 908 milliseconds