Lines Matching full:report

1 //===-- report.cpp ----------------------------------------------*- C++ -*-===//
9 #include "report.h"
43 ScopedErrorReport Report; in reportCheckFailed() local
44 Report.append("CHECK failed @ %s:%d %s ((u64)op1=%llu, (u64)op2=%llu)\n", in reportCheckFailed()
50 ScopedErrorReport Report; in reportError() local
51 Report.append("%s\n", Message); in reportError()
62 ScopedErrorReport Report; in reportInvalidFlag() local
63 Report.append("invalid value for %s option: '%s'\n", FlagType, Value); in reportInvalidFlag()
69 ScopedErrorReport Report; in reportHeaderCorruption() local
70 Report.append("corrupted chunk header at address %p\n", Ptr); in reportHeaderCorruption()
76 ScopedErrorReport Report; in reportSanityCheckError() local
77 Report.append("maximum possible %s doesn't fit in header\n", Field); in reportSanityCheckError()
83 ScopedErrorReport Report; in reportAlignmentTooBig() local
84 Report.append("invalid allocation alignment: %zu exceeds maximum supported " in reportAlignmentTooBig()
92 ScopedErrorReport Report; in reportAllocationSizeTooBig() local
93 Report.append("requested allocation size %zu (%zu after adjustments) exceeds " in reportAllocationSizeTooBig()
99 ScopedErrorReport Report; in reportOutOfBatchClass() local
100 Report.append("BatchClass region is used up, can't hold any free block\n"); in reportOutOfBatchClass()
104 ScopedErrorReport Report; in reportOutOfMemory() local
105 Report.append("out of memory trying to allocate %zu bytes\n", RequestedSize); in reportOutOfMemory()
125 ScopedErrorReport Report; in reportInvalidChunkState() local
126 Report.append("invalid chunk state when %s address %p\n", in reportInvalidChunkState()
131 ScopedErrorReport Report; in reportMisalignedPointer() local
132 Report.append("misaligned pointer when %s address %p\n", in reportMisalignedPointer()
140 ScopedErrorReport Report; in reportDeallocTypeMismatch() local
141 Report.append("allocation type mismatch when %s address %p (%d vs %d)\n", in reportDeallocTypeMismatch()
149 ScopedErrorReport Report; in reportDeleteSizeMismatch() local
150 Report.append( in reportDeleteSizeMismatch()
156 ScopedErrorReport Report; in reportAlignmentNotPowerOfTwo() local
157 Report.append( in reportAlignmentNotPowerOfTwo()
163 ScopedErrorReport Report; in reportCallocOverflow() local
164 Report.append("calloc parameters overflow: count * size (%zu * %zu) cannot " in reportCallocOverflow()
170 ScopedErrorReport Report; in reportInvalidPosixMemalignAlignment() local
171 Report.append( in reportInvalidPosixMemalignAlignment()
178 ScopedErrorReport Report; in reportPvallocOverflow() local
179 Report.append("pvalloc parameters overflow: size %zu rounded up to system " in reportPvallocOverflow()
185 ScopedErrorReport Report; in reportInvalidAlignedAllocAlignment() local
186 Report.append("invalid alignment requested in aligned_alloc: %zu, alignment " in reportInvalidAlignedAllocAlignment()