/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | report.h | 19 void NORETURN reportError(const char *Message); 22 void NORETURN reportRawError(const char *Message); 25 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value); 28 void NORETURN reportHeaderCorruption(void *Ptr); 31 void NORETURN reportSanityCheckError(const char *Field); 34 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment); 35 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, 37 void NORETURN reportOutOfBatchClass(); 38 void NORETURN reportOutOfMemory(uptr RequestedSize); 45 void NORETURN reportInvalidChunkStat [all...] |
H A D | report.cpp | 27 NORETURN ~ScopedErrorReport() { reportRawError(Message.data()); } in ~ScopedErrorReport() 33 inline void NORETURN trap() { __builtin_trap(); } 36 void NORETURN reportCheckFailed(const char *File, int Line, 49 void NORETURN reportError(const char *Message) { in reportHardRSSLimit() 55 void NORETURN reportRawError(const char *Message) { in reportCheckFailed() 61 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportCheckFailed() 68 void NORETURN reportHeaderCorruption(void *Ptr) { in reportError() 75 void NORETURN reportSanityCheckError(const char *Field) { 82 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment) { 90 void NORETURN reportAllocationSizeTooBi [all...] |
H A D | memtag.h | 45 inline NORETURN uptr archMemoryTagGranuleSize() { 49 inline NORETURN uptr untagPointer(uptr Ptr) { 54 inline NORETURN uint8_t extractTag(uptr Ptr) { 113 inline NORETURN bool systemDetectsMemoryTagFaultsTestOnly() { in systemDetectsMemoryTagFaultsTestOnly() 117 inline NORETURN void enableSystemMemoryTaggingTestOnly() { in enableSystemMemoryTaggingTestOnly() 259 inline NORETURN bool systemSupportsMemoryTagging() { in systemSupportsMemoryTagging() 263 inline NORETURN bool systemDetectsMemoryTagFaultsTestOnly() { in systemDetectsMemoryTagFaultsTestOnly() 267 inline NORETURN void enableSystemMemoryTaggingTestOnly() { in enableSystemMemoryTaggingTestOnly() 275 inline NORETURN uptr selectRandomTag(uptr Ptr, uptr ExcludeMask) { in selectRandomTag() 281 inline NORETURN uptr addFixedTag(uptr Ptr, uptr Tag) { in addFixedTag() [all …]
|
H A D | report_linux.cpp | 26 void NORETURN reportMapError(uptr SizeIfOOM) { in reportMapError() 36 void NORETURN reportUnmapError(uptr Addr, uptr Size) { in reportUnmapError() 44 void NORETURN reportProtectError(uptr Addr, uptr Size, int Prot) { in reportProtectError()
|
H A D | internal_defs.h | 38 #define NORETURN __attribute__((noreturn)) macro 94 void NORETURN die(); 106 void NORETURN reportCheckFailed(const char *File, int Line,
|
H A D | common.cpp |
|
H A D | fuchsia.cpp | 29 void NORETURN die() { __builtin_trap(); } in die() 35 static void NORETURN dieOnError(zx_status_t Status, const char *FnName, in dieOnError()
|
H A D | trusty.cpp | 32 void NORETURN die() { abort(); }
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | 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); 36 void NORETURN ReportRssLimitExceeded(const StackTrace *stack);
|
H A D | sanitizer_allocator_report.cpp | 43 void NORETURN ReportCallocOverflow(uptr count, uptr size, in ReportCallocOverflow() 54 void NORETURN ReportReallocArrayOverflow(uptr count, uptr size, in ReportReallocArrayOverflow() 66 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack) { in ReportPvallocOverflow() 76 void NORETURN ReportInvalidAllocationAlignment(uptr alignment, in ReportInvalidAllocationAlignment() 86 void NORETURN ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment, in ReportInvalidAlignedAllocAlignment() 104 void NORETURN ReportInvalidPosixMemalignAlignment(uptr alignment, in ReportInvalidPosixMemalignAlignment() 118 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size, in ReportAllocationSizeTooBig() 128 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack) { in ReportOutOfMemory() 136 void NORETURN ReportRssLimitExceeded(const StackTrace *stack) { in ReportRssLimitExceeded()
|
H A D | sanitizer_termination.cpp | 50 void NORETURN Die() { in Die() 67 void NORETURN CheckFailed(const char *file, int line, const char *cond, in CheckFailed()
|
H A D | sanitizer_internal_defs.h | 229 # define NORETURN __declspec(noreturn) macro 243 # define NORETURN __attribute__((noreturn)) macro 305 void NORETURN Die(); 307 void NORETURN CheckFailed(const char *file, int line, const char *cond,
|
H A D | sanitizer_common.h | 320 void NORETURN Abort(); 321 void NORETURN Die(); 322 void NORETURN 324 void NORETURN ReportMmapFailureAndDie(uptr size, const char *mem_type, 327 void NORETURN ReportMunmapFailureAndDie(void *ptr, uptr size, error_t err,
|
H A D | sanitizer_common.cpp | 38 void NORETURN ReportMmapFailureAndDie(uptr size, const char *mem_type, in ReportMmapFailureAndDie() 64 void NORETURN ReportMunmapFailureAndDie(void *addr, uptr size, error_t err, in ReportMunmapFailureAndDie()
|
H A D | sanitizer_libc.h | 91 void NORETURN internal__exit(int exitcode);
|
/freebsd/contrib/libxo/libxo/ |
H A D | xo.h | 31 #define NORETURN __dead2 macro 33 #define NORETURN macro 432 xo_err (int eval, const char *fmt, ...) NORETURN PRINTFLIKE(2, 3); 435 xo_errx (int eval, const char *fmt, ...) NORETURN PRINTFLIKE(2, 3); 438 xo_errc (int eval, int code, const char *fmt, ...) NORETURN PRINTFLIKE(3, 4); 472 xo_emit_err (int eval, const char *fmt, ...) NORETURN; 475 xo_emit_errx (int eval, const char *fmt, ...) NORETURN; 478 xo_emit_errc (int eval, int code, const char *fmt, ...) NORETURN; 529 NORETURN PRINTFLIKE(2, 3) 565 xo_emit_err_v (int eval, int code, const char *fmt, va_list vap) NORETURN PRINTFLIKE(3, 0);
|
/freebsd/contrib/tcpdump/ |
H A D | funcattrs.h | 64 #define NORETURN __attribute((noreturn)) macro 84 #define NORETURN __declspec(noreturn) macro 87 #define NORETURN macro
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | int_util.c | 22 NORETURN extern void panic(const char *, ...); 33 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
|
H A D | int_util.h | 23 NORETURN void __compilerrt_abort_impl(const char *file, int line,
|
/freebsd/sys/contrib/openzfs/lib/libspl/include/ |
H A D | assert.h | 44 #define NORETURN __attribute__((__noreturn__)) macro 46 #define NORETURN macro 54 const char *format, ...) NORETURN __attribute__((format(printf, 4, 5)));
|
/freebsd/sys/contrib/edk2/Include/ |
H A D | Base.h | 87 #ifndef NORETURN 94 #define NORETURN __attribute__((noreturn)) macro 101 #define NORETURN __declspec(noreturn) macro 108 #define NORETURN macro
|
/freebsd/contrib/bzip2/ |
H A D | bzip2.c | 92 # define NORETURN __attribute__ ((noreturn)) macro 94 # define NORETURN /**/ macro 133 # define NORETURN /**/ macro 213 static void panic ( const Char* ) NORETURN; 214 static void ioError ( void ) NORETURN; 215 static void outOfMemory ( void ) NORETURN; 216 static void configError ( void ) NORETURN; 217 static void crcError ( void ) NORETURN; 218 static void cleanUpAndFail ( Int32 ) NORETURN; 219 static void compressedStreamEOF ( void ) NORETURN;
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_oformat.h | 31 #undef NORETURN /* needed because libxo redefines it */
|
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_handlers.h | 27 extern "C" SANITIZER_INTERFACE_ATTRIBUTE NORETURN \ 33 extern "C" SANITIZER_INTERFACE_ATTRIBUTE NORETURN \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_internal.h | 73 void NORETURN ShowStatsAndAbort();
|