Home
last modified time | relevance | path

Searched refs:failed_alloc_bytes (Results 1 – 10 of 10) sorted by relevance

/art/runtime/gc/space/
Dzygote_space.h79 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
Drosalloc_space.h143 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE { in LogFragmentationAllocFailure() argument
144 rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes); in LogFragmentationAllocFailure()
Ddlmalloc_space.h138 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
Dbump_pointer_space.h156 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
Dlarge_object_space.h98 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
Dspace.h247 virtual void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) = 0;
Ddlmalloc_space.cc304 size_t failed_alloc_bytes ATTRIBUTE_UNUSED) { in LogFragmentationAllocFailure()
Dregion_space.h165 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
/art/runtime/gc/allocator/
Drosalloc.cc2077 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()
Drosalloc.h928 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)