Searched refs:failed_alloc_bytes (Results 1 – 12 of 12) sorted by relevance
/aosp12/art/runtime/gc/space/ |
H A D | rosalloc_space.h | 155 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override { in LogFragmentationAllocFailure() argument 156 return rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes); in LogFragmentationAllocFailure()
|
H A D | bump_pointer_space.cc | 224 size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 226 if (failed_alloc_bytes > max_contiguous_allocation) { in LogFragmentationAllocFailure()
|
H A D | zygote_space.h | 82 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | dlmalloc_space.cc | 363 size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 372 if (failed_alloc_bytes > max_contiguous_allocation) { in LogFragmentationAllocFailure()
|
H A D | dlmalloc_space.h | 152 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | bump_pointer_space.h | 164 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | large_object_space.h | 104 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | space.h | 249 virtual bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) = 0;
|
H A D | region_space.cc | 726 size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 762 if (failed_alloc_bytes > max_contiguous_allocation) { in LogFragmentationAllocFailure()
|
H A D | region_space.h | 230 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
/aosp12/art/runtime/gc/allocator/ |
H A D | rosalloc.cc | 2072 bool RosAlloc::LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 2085 if (failed_alloc_bytes > kLargeSizeThreshold) { in LogFragmentationAllocFailure() 2087 required_bytes = RoundUp(failed_alloc_bytes, kPageSize); in LogFragmentationAllocFailure() 2090 required_bytes = numOfPages[SizeToIndex(failed_alloc_bytes)] * kPageSize; in LogFragmentationAllocFailure()
|
H A D | rosalloc.h | 932 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)
|