Searched refs:failed_alloc_bytes (Results 1 – 12 of 12) sorted by relevance
/aosp_15_r20/art/runtime/gc/space/ |
H A D | rosalloc_space.h | 155 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override { in LogFragmentationAllocFailure() argument 156 return rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes); in LogFragmentationAllocFailure()
|
H A D | bump_pointer_space.cc | 240 size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 242 if (failed_alloc_bytes > max_contiguous_allocation) { in LogFragmentationAllocFailure()
|
H A D | dlmalloc_space.cc | 420 size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 429 if (failed_alloc_bytes > mspace_cb_args.max_contiguous) { in LogFragmentationAllocFailure()
|
H A D | zygote_space.h | 82 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | dlmalloc_space.h | 152 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | bump_pointer_space.h | 165 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | large_object_space.h | 104 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
H A D | space.h | 249 virtual bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) = 0;
|
H A D | region_space.cc | 721 size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 757 if (failed_alloc_bytes > max_contiguous_allocation) { in LogFragmentationAllocFailure()
|
H A D | region_space.h | 230 EXPORT bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
|
/aosp_15_r20/art/runtime/gc/allocator/ |
H A D | rosalloc.cc | 2065 bool RosAlloc::LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) { in LogFragmentationAllocFailure() argument 2078 if (failed_alloc_bytes > kLargeSizeThreshold) { in LogFragmentationAllocFailure() 2080 required_bytes = RoundUp(failed_alloc_bytes, gPageSize); in LogFragmentationAllocFailure() 2083 required_bytes = numOfPages[SizeToIndex(failed_alloc_bytes)] * gPageSize; in LogFragmentationAllocFailure()
|
H A D | rosalloc.h | 934 bool LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)
|