Searched refs:failed_alloc_bytes (Results 1 – 10 of 10) sorted by relevance
/art/runtime/gc/space/ |
D | zygote_space.h | 79 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
D | rosalloc_space.h | 143 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE { in LogFragmentationAllocFailure() argument 144 rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes); in LogFragmentationAllocFailure()
|
D | dlmalloc_space.h | 138 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
D | bump_pointer_space.h | 162 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
D | large_object_space.h | 99 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 | 306 size_t failed_alloc_bytes ATTRIBUTE_UNUSED) { in LogFragmentationAllocFailure()
|
D | region_space.h | 194 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 2071 void RosAlloc::LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 2084 if (failed_alloc_bytes > kLargeSizeThreshold) { in LogFragmentationAllocFailure() 2086 required_bytes = RoundUp(failed_alloc_bytes, kPageSize); in LogFragmentationAllocFailure() 2089 required_bytes = numOfPages[SizeToIndex(failed_alloc_bytes)] * kPageSize; in LogFragmentationAllocFailure()
|
D | rosalloc.h | 932 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)
|