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 | 156 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
D | large_object_space.h | 98 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
D | space.h | 247 virtual void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) = 0;
|
D | dlmalloc_space.cc | 304 size_t failed_alloc_bytes ATTRIBUTE_UNUSED) { in LogFragmentationAllocFailure()
|
D | region_space.h | 165 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 2077 void RosAlloc::LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 2086 if (failed_alloc_bytes > kLargeSizeThreshold) { in LogFragmentationAllocFailure() 2088 size_t required_bytes = RoundUp(failed_alloc_bytes, kPageSize); in LogFragmentationAllocFailure() 2096 size_t required_bytes = numOfPages[SizeToIndex(failed_alloc_bytes)] * kPageSize; in LogFragmentationAllocFailure()
|
D | rosalloc.h | 928 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)
|