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.h162 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
Dlarge_object_space.h99 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
Dspace.h246 virtual void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) = 0;
Ddlmalloc_space.cc306 size_t failed_alloc_bytes ATTRIBUTE_UNUSED) { in LogFragmentationAllocFailure()
Dregion_space.h194 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) OVERRIDE
/art/runtime/gc/allocator/
Drosalloc.cc2071 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()
Drosalloc.h932 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)