reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_internal.h
   72 void NORETURN ShowStatsAndAbort();
projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
  142 static void NORETURN ReportInternalAllocatorOutOfMemory(uptr requested_size) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
   43 void NORETURN ReportCallocOverflow(uptr count, uptr size,
   54 void NORETURN ReportReallocArrayOverflow(uptr count, uptr size,
   66 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack) {
   76 void NORETURN ReportInvalidAllocationAlignment(uptr alignment,
   86 void NORETURN ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment,
  104 void NORETURN ReportInvalidPosixMemalignAlignment(uptr alignment,
  118 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size,
  128 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
   22 void NORETURN ReportCallocOverflow(uptr count, uptr size,
   24 void NORETURN ReportReallocArrayOverflow(uptr count, uptr size,
   26 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack);
   27 void NORETURN ReportInvalidAllocationAlignment(uptr alignment,
   29 void NORETURN ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment,
   31 void NORETURN ReportInvalidPosixMemalignAlignment(uptr alignment,
   33 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size,
   35 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack);
projects/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
   36 void NORETURN ReportMmapFailureAndDie(uptr size, const char *mem_type,
projects/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  264 void NORETURN Abort();
  265 void NORETURN Die();
  266 void NORETURN
  268 void NORETURN ReportMmapFailureAndDie(uptr size, const char *mem_type,
projects/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  278 void NORETURN Die();
  280 void NORETURN CheckFailed(const char *file, int line, const char *cond,
projects/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
   69 void NORETURN internal__exit(int exitcode);
projects/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
   50 void NORETURN Die() {
   69 void NORETURN CheckFailed(const char *file, int line, const char *cond,
projects/compiler-rt/lib/scudo/scudo_errors.cpp
   19 void NORETURN reportCallocOverflow(uptr Count, uptr Size) {
   24 void NORETURN reportPvallocOverflow(uptr Size) {
   30 void NORETURN reportAllocationAlignmentTooBig(uptr Alignment,
   36 void NORETURN reportAllocationAlignmentNotPowerOfTwo(uptr Alignment) {
   41 void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment) {
   48 void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment) {
   60 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
   67 void NORETURN reportRssLimitExceeded() {
   72 void NORETURN reportOutOfMemory(uptr RequestedSize) {
projects/compiler-rt/lib/scudo/scudo_errors.h
   20 void NORETURN reportCallocOverflow(uptr Count, uptr Size);
   21 void NORETURN reportPvallocOverflow(uptr Size);
   22 void NORETURN reportAllocationAlignmentTooBig(uptr Alignment,
   24 void NORETURN reportAllocationAlignmentNotPowerOfTwo(uptr Alignment);
   25 void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment);
   26 void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment);
   27 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
   29 void NORETURN reportRssLimitExceeded();
   30 void NORETURN reportOutOfMemory(uptr RequestedSize);
projects/compiler-rt/lib/scudo/scudo_termination.cpp
   27 void NORETURN Die() {
   35 void NORETURN CheckFailed(const char *File, int Line, const char *Condition,
projects/compiler-rt/lib/scudo/scudo_utils.cpp
   42 FORMAT(1, 2) void NORETURN dieWithMessage(const char *Format, ...) {
projects/compiler-rt/lib/scudo/scudo_utils.h
   30 void NORETURN dieWithMessage(const char *Format, ...);