reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
42 reportInvalidChunkState(AllocatorAction::Recycling, Ptr); 85 reportInvalidChunkState(AllocatorAction::Deallocating, Ptr); 263 reportMisalignedPointer(AllocatorAction::Deallocating, Ptr); 269 reportInvalidChunkState(AllocatorAction::Deallocating, Ptr); 275 reportDeallocTypeMismatch(AllocatorAction::Deallocating, Ptr, 297 reportMisalignedPointer(AllocatorAction::Reallocating, OldPtr); 303 reportInvalidChunkState(AllocatorAction::Reallocating, OldPtr); 310 reportDeallocTypeMismatch(AllocatorAction::Reallocating, OldPtr, 442 reportInvalidChunkState(AllocatorAction::Sizing, const_cast<void *>(Ptr));projects/compiler-rt/lib/scudo/standalone/report.cpp
108 static const char *stringifyAction(AllocatorAction Action) { 110 case AllocatorAction::Recycling: 112 case AllocatorAction::Deallocating: 114 case AllocatorAction::Reallocating: 116 case AllocatorAction::Sizing: 124 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr) { 130 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr) { 138 void NORETURN reportDeallocTypeMismatch(AllocatorAction Action, void *Ptr,projects/compiler-rt/lib/scudo/standalone/report.h
42 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr); 43 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr); 44 void NORETURN reportDeallocTypeMismatch(AllocatorAction Action, void *Ptr,