Searched refs:failed_alloc_bytes (Results 1 – 10 of 10) sorted by relevance
/art/runtime/gc/space/ |
D | zygote_space.h | 80 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
D | rosalloc_space.h | 155 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override { in LogFragmentationAllocFailure() argument 156 rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes); in LogFragmentationAllocFailure()
|
D | dlmalloc_space.h | 152 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
D | bump_pointer_space.h | 164 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
D | large_object_space.h | 104 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
D | space.h | 246 virtual void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) = 0;
|
D | dlmalloc_space.cc | 363 size_t failed_alloc_bytes ATTRIBUTE_UNUSED) { in LogFragmentationAllocFailure()
|
D | region_space.h | 224 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 2072 void 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()
|
D | rosalloc.h | 931 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)
|