| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ErrorHandling.h | 63 [[noreturn]] LLVM_ABI void report_fatal_error(const char *reason, 65 [[noreturn]] LLVM_ABI void report_fatal_error(StringRef reason, 67 [[noreturn]] LLVM_ABI void report_fatal_error(const Twine &reason, 77 [[noreturn]] LLVM_ABI void reportFatalInternalError(const char *reason); 78 [[noreturn]] LLVM_ABI void reportFatalInternalError(StringRef reason); 79 [[noreturn]] LLVM_ABI void reportFatalInternalError(const Twine &reason); 95 [[noreturn]] LLVM_ABI void reportFatalUsageError(const char *reason); 96 [[noreturn]] LLVM_ABI void reportFatalUsageError(StringRef reason); 97 [[noreturn]] LLVM_ABI void reportFatalUsageError(const Twine &reason); 135 [[noreturn]] LLVM_ABI void report_bad_alloc_error(const char *Reason, [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Error.h | 29 [[noreturn]] void PrintFatalNote(const Twine &Msg); 30 [[noreturn]] void PrintFatalNote(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg); 31 [[noreturn]] void PrintFatalNote(const Record *Rec, const Twine &Msg); 32 [[noreturn]] void PrintFatalNote(const RecordVal *RecVal, const Twine &Msg); 45 [[noreturn]] void PrintFatalError(const Twine &Msg); 46 [[noreturn]] void PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg); 47 [[noreturn]] void PrintFatalError(const Record *Rec, const Twine &Msg); 48 [[noreturn]] void PrintFatalError(const RecordVal *RecVal, const Twine &Msg); 49 [[noreturn]] void PrintFatalError(function_ref<void(raw_ostream &OS)> PrintMsg);
|
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | warn.c | 181 __attribute__ ((noreturn, format (printf, 4, 0))) in krb5_verr() 203 __attribute__ ((noreturn, format (printf, 4, 5))) in krb5_err() 223 __attribute__ ((noreturn, format (printf, 3, 0))) in krb5_verrx() 242 __attribute__ ((noreturn, format (printf, 3, 4))) in krb5_errx() 264 __attribute__ ((noreturn, format (printf, 3, 0))) in krb5_vabort() 284 __attribute__ ((noreturn, format (printf, 3, 4))) in krb5_abort() 293 __attribute__ ((noreturn, format (printf, 2, 0))) in krb5_vabortx() 312 __attribute__ ((noreturn, format (printf, 2, 3))) in krb5_abortx()
|
| /freebsd/contrib/tcpdump/ |
| H A D | funcattrs.h | 51 #if __has_attribute(noreturn) \ 64 #define NORETURN __attribute((noreturn)) 76 #define NORETURN_FUNCPTR __attribute((noreturn)) 84 #define NORETURN __declspec(noreturn)
|
| /freebsd/contrib/ntp/sntp/libopts/ |
| H A D | stdnoreturn.in.h | 20 #ifndef noreturn 50 # define noreturn /*empty*/ macro 52 # define noreturn _Noreturn macro
|
| /freebsd/contrib/libfido2/openbsd-compat/ |
| H A D | err.h | 18 __declspec(noreturn) 20 __attribute__((noreturn)) 39 __declspec(noreturn) 41 __attribute__((noreturn))
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | exception | 43 [[noreturn]] void unexpected(); 48 [[noreturn]] void terminate() noexcept; 56 void rethrow_exception [[noreturn]] (exception_ptr p); 68 [[noreturn]] void rethrow_nested() const; 72 template <class T> [[noreturn]] void throw_with_nested(T&& t);
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | exception | 43 [[noreturn]] void unexpected(); 48 [[noreturn]] void terminate() noexcept; 56 void rethrow_exception [[noreturn]] (exception_ptr p); 68 [[noreturn]] void rethrow_nested() const; 72 template <class T> [[noreturn]] void throw_with_nested(T&& t);
|
| /freebsd/contrib/libpcap/pcap/ |
| H A D | funcattrs.h | 262 #if __has_attribute(noreturn) \ 275 #define PCAP_NORETURN __attribute((noreturn)) 276 #define PCAP_NORETURN_DEF __attribute((noreturn)) 281 #define PCAP_NORETURN __declspec(noreturn)
|
| /freebsd/include/ |
| H A D | stdnoreturn.h | 33 #ifndef noreturn 36 #define noreturn _Noreturn macro
|
| /freebsd/contrib/llvm-project/libc/src/__support/OSUtil/baremetal/ |
| H A D | exit.cpp | 16 extern "C" [[noreturn]] void __llvm_libc_exit(int status); 18 [[noreturn]] void exit(int status) { __llvm_libc_exit(status); } in exit()
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | vector.cpp | 20 [[noreturn]] _LIBCPP_EXPORTED_FROM_ABI void __throw_length_error() const; 21 [[noreturn]] _LIBCPP_EXPORTED_FROM_ABI void __throw_out_of_range() const;
|
| /freebsd/crypto/heimdal/lib/roken/ |
| H A D | err.hin | 61 __attribute__ ((noreturn, format (printf, 2, 0))); 65 __attribute__ ((noreturn, format (printf, 2, 3))); 69 __attribute__ ((noreturn, format (printf, 2, 0))); 73 __attribute__ ((noreturn, format (printf, 2, 3)));
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/bits/ |
| H A D | c++config.h | 30 __attribute__((device, noreturn)) inline void 44 __attribute__((device, noreturn, __always_inline__,
|
| /freebsd/kerberos5/include/ |
| H A D | krb5-types.h | 45 #if __has_extension(noreturn) || KRB5TYPES_REQUIRE_GNUC(3,1,0) 46 #define HEIMDAL_NORETURN_ATTRIBUTE __attribute__((noreturn))
|
| /freebsd/contrib/llvm-project/libcxx/src/support/runtime/ |
| H A D | exception_pointer_glibcxx.ipp | 34 [[noreturn]] void rethrow_exception(__exception_ptr::exception_ptr); 58 [[noreturn]] void nested_exception::rethrow_nested() const { 64 [[noreturn]] void rethrow_exception(exception_ptr p) {
|
| H A D | exception_pointer_msvc.ipp | 21 [[noreturn]] _LIBCPP_CRT_FUNC void __cdecl __ExceptionPtrRethrow(const void*); 64 [[noreturn]] void rethrow_exception(exception_ptr p) { __ExceptionPtrRethrow(&p); } 70 [[noreturn]] void nested_exception::rethrow_nested() const {
|
| /freebsd/contrib/ntp/sntp/libopts/autoopts/ |
| H A D | project.h | 81 #define lo_noreturn __declspec(noreturn) 83 #define lo_noreturn noreturn
|
| /freebsd/sys/contrib/openzfs/lib/libspl/include/sys/ |
| H A D | cmn_err.h | 86 __attribute__((format(printf, 1, 2), noreturn)); 88 __attribute__((format(printf, 1, 0), noreturn));
|
| /freebsd/contrib/xz/src/common/ |
| H A D | tuklib_common.h | 79 # define tuklib_attr_noreturn [[noreturn]] 85 # define tuklib_attr_noreturn __declspec(noreturn)
|
| /freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
| H A D | cmn_err.h | 114 __KPRINTFLIKE(1) __attribute__((noreturn)); 118 __KVPRINTFLIKE(1) __attribute__((noreturn));
|
| /freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | thread.h | 46 typedef void (*thread_func_t)(void *) __attribute__((noreturn)); 69 static inline __attribute__((noreturn)) void
|
| /freebsd/contrib/llvm-project/lld/include/lld/Common/ |
| H A D | ErrorHandler.h | 112 [[noreturn]] void fatal(const Twine &msg); 149 [[noreturn]] void fatal(const Twine &msg); 173 [[noreturn]] void exitLld(int val);
|
| /freebsd/contrib/expat/tests/ |
| H A D | minicheck.h | 133 # if __has_attribute(noreturn) 134 __attribute__((noreturn))
|
| /freebsd/crypto/heimdal/include/ |
| H A D | krb5-types.cross | 44 #if __has_extension(noreturn) || KRB5TYPES_REQUIRE_GNUC(3,1,0) 45 #define HEIMDAL_NORETURN_ATTRIBUTE __attribute__((noreturn))
|