Home
last modified time | relevance | path

Searched refs:NORETURN (Results 1 – 25 of 113) sorted by relevance

12345

/external/scudo/standalone/
Dreport.h19 void NORETURN reportError(const char *Message);
22 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value);
25 void NORETURN reportHeaderCorruption(void *Ptr);
26 void NORETURN reportHeaderRace(void *Ptr);
29 void NORETURN reportSanityCheckError(const char *Field);
32 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment);
33 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
35 void NORETURN reportOutOfMemory(uptr RequestedSize);
42 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr);
43 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr);
[all …]
Dreport.cpp27 NORETURN ~ScopedErrorReport() { in ~ScopedErrorReport()
37 inline void NORETURN trap() { __builtin_trap(); } in trap()
40 void NORETURN reportCheckFailed(const char *File, int Line, in reportCheckFailed()
53 void NORETURN reportError(const char *Message) { in reportError()
58 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportInvalidFlag()
65 void NORETURN reportHeaderCorruption(void *Ptr) { in reportHeaderCorruption()
73 void NORETURN reportHeaderRace(void *Ptr) { in reportHeaderRace()
80 void NORETURN reportSanityCheckError(const char *Field) { in reportSanityCheckError()
87 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment) { in reportAlignmentTooBig()
95 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig()
[all …]
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dreport.h19 void NORETURN reportError(const char *Message);
22 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value);
25 void NORETURN reportHeaderCorruption(void *Ptr);
26 void NORETURN reportHeaderRace(void *Ptr);
29 void NORETURN reportSanityCheckError(const char *Field);
32 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment);
33 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
35 void NORETURN reportOutOfMemory(uptr RequestedSize);
42 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr);
43 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr);
[all …]
Dreport.cpp27 NORETURN ~ScopedErrorReport() { in ~ScopedErrorReport()
37 inline void NORETURN trap() { __builtin_trap(); } in trap()
40 void NORETURN reportCheckFailed(const char *File, int Line, in reportCheckFailed()
53 void NORETURN reportError(const char *Message) { in reportError()
58 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportInvalidFlag()
65 void NORETURN reportHeaderCorruption(void *Ptr) { in reportHeaderCorruption()
73 void NORETURN reportHeaderRace(void *Ptr) { in reportHeaderRace()
80 void NORETURN reportSanityCheckError(const char *Field) { in reportSanityCheckError()
87 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment) { in reportAlignmentTooBig()
95 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig()
[all …]
Dinternal_defs.h38 #define NORETURN __attribute__((noreturn)) macro
66 void NORETURN die();
78 void NORETURN reportCheckFailed(const char *File, int Line,
/external/llvm-project/compiler-rt/lib/scudo/
Dscudo_errors.h20 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);
Dscudo_errors.cpp19 void NORETURN reportCallocOverflow(uptr Count, uptr Size) { in reportCallocOverflow()
24 void NORETURN reportPvallocOverflow(uptr Size) { in reportPvallocOverflow()
30 void NORETURN reportAllocationAlignmentTooBig(uptr Alignment, in reportAllocationAlignmentTooBig()
36 void NORETURN reportAllocationAlignmentNotPowerOfTwo(uptr Alignment) { in reportAllocationAlignmentNotPowerOfTwo()
41 void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment) { in reportInvalidPosixMemalignAlignment()
48 void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment) { in reportInvalidAlignedAllocAlignment()
60 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig()
67 void NORETURN reportRssLimitExceeded() { in reportRssLimitExceeded()
72 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory()
Dscudo_termination.cpp27 void NORETURN Die() { in Die()
35 void NORETURN CheckFailed(const char *File, int Line, const char *Condition, in CheckFailed()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator_report.h22 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);
Dsanitizer_allocator_report.cpp43 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()
137 void NORETURN ReportRssLimitExceeded(const StackTrace *stack) { in ReportRssLimitExceeded()
/external/llvm-project/flang/runtime/
Dstop.h19 NORETURN void RTNAME(StopStatement)(int code DEFAULT_VALUE(EXIT_SUCCESS),
21 NORETURN void RTNAME(StopStatementText)(const char *, size_t,
26 NORETURN void RTNAME(FailImageStatement)(NO_ARGUMENTS);
27 NORETURN void RTNAME(ProgramEndStatement)(NO_ARGUMENTS);
/external/dtc/
Dutil.h20 #define NORETURN __attribute__((noreturn)) macro
23 #define NORETURN macro
31 static inline void NORETURN PRINTF(1, 2) die(const char *str, ...) in die()
183 void NORETURN util_version(void);
197 void NORETURN util_usage(const char *errmsg, const char *synopsis,
/external/ms-tpm-20-ref/TPMCmd/tpm/include/
DCompilerDependencies.h66 # define NORETURN __declspec(noreturn) macro
103 # define NORETURN __attribute__((noreturn)) macro
108 #ifndef NORETURN
109 # define NORETURN macro
/external/tcpdump/
Dfuncattrs.h78 #define NORETURN __attribute((noreturn)) macro
83 #define NORETURN __declspec(noreturn) macro
85 #define NORETURN macro
/external/llvm-project/clang/test/CodeGenObjC/
Dattr-noreturn.m32 …8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN:#[0-9]+]]
63 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]]
80 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]]
89 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]]
95 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]]
98 // CHECK: attributes [[NORETURN]] = { noreturn }
/external/clang/test/CodeGenObjC/
Dattr-noreturn.m32 …8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN:#[0-9]+]]
63 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]]
80 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]]
89 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]]
95 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]]
98 // CHECK: attributes [[NORETURN]] = { noreturn }
/external/compiler-rt/lib/scudo/
Dscudo_termination.cpp26 void NORETURN Die() { in Die()
34 void NORETURN CheckFailed(const char *file, int line, const char *cond, in CheckFailed()
/external/skqp/src/sksl/
DSkSLDefines.h39 #define NORETURN __declspec(noreturn) macro
41 #define NORETURN __attribute__((__noreturn__)) macro
/external/compiler-rt/lib/builtins/
Dint_util.c26 NORETURN extern void panic(const char *, ...);
37 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
/external/llvm-project/compiler-rt/lib/builtins/
Dint_util.c22 NORETURN extern void panic(const char *, ...);
33 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
/external/mesa3d/src/util/
Dmacros.h176 #ifndef NORETURN
178 # define NORETURN __declspec(noreturn) macro
180 # define NORETURN __attribute__((__noreturn__)) macro
182 # define NORETURN macro
/external/mtools/
Dsysincludes.h109 # define NORETURN __attribute__ ((noreturn)) macro
124 #ifndef NORETURN
125 # define NORETURN /* */ macro
470 void myexit(int code) NORETURN;
Dmshortname.c34 static void usage(int ret) NORETURN;
45 void mshortname(int argc, char **argv, int type UNUSEDP) NORETURN;
Dmclasserase.c58 static void usage(int ret) NORETURN;
79 static void do_mclasserase(char drive,int debug) NORETURN;
281 void mclasserase(int argc, char **argv, int type UNUSEDP) NORETURN;
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_termination.cc51 void NORETURN Die() { in Die()
70 void NORETURN CheckFailed(const char *file, int line, const char *cond, in CheckFailed()

12345