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 113 uint64_t GetBytesAllocated() REQUIRES_SHARED(Locks::mutator_lock_)
dlmalloc_space.h 125 uint64_t GetBytesAllocated() OVERRIDE;
malloc_space.h 135 virtual uint64_t GetBytesAllocated() = 0;
large_object_space.h 51 uint64_t GetBytesAllocated() OVERRIDE {
large_object_space_test.cc 112 EXPECT_EQ(0U, los->GetBytesAllocated());
rosalloc_space.h 118 uint64_t GetBytesAllocated() OVERRIDE;
space.h 198 virtual uint64_t GetBytesAllocated() = 0;
bump_pointer_space.cc 213 uint64_t BumpPointerSpace::GetBytesAllocated() {
dlmalloc_space.cc 264 uint64_t DlMallocSpace::GetBytesAllocated() {
rosalloc_space.cc 289 uint64_t RosAllocSpace::GetBytesAllocated() {
region_space.h 118 uint64_t GetBytesAllocated() REQUIRES(!region_lock_) {
  /art/runtime/base/
arena_allocator.cc 331 size_t ArenaPool::GetBytesAllocated() const {
335 total += arena->GetBytesAllocated();
367 total += cur_arena->GetBytesAllocated();
473 DCHECK_EQ(bytes, arena_head_->next_->GetBytesAllocated());
arena_allocator.h 221 size_t GetBytesAllocated() const {
255 size_t GetBytesAllocated() const REQUIRES(!lock_);
  /art/runtime/native/
dalvik_system_VMDebug.cc 353 zygoteUsed += zygote_space->GetBytesAllocated();
358 allocUsed += malloc_space->GetBytesAllocated();
362 allocUsed += bump_pointer_space->GetBytesAllocated();
367 largeObjectsSize += space->AsLargeObjectSpace()->GetBytesAllocated();
  /art/runtime/gc/
heap.h 489 size_t GetBytesAllocated() const {
520 return std::max(GetBytesAllocated(), growth_limit_);
529 return max_allowed_footprint_ - GetBytesAllocated();
534 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 362 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 1523 milliseconds