Home
last modified time | relevance | path

Searched refs:ErrCode (Results 1 – 7 of 7) sorted by relevance

/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVError.h51 #define SPIRVCK(Condition,ErrCode,ErrMsg) \ argument
52 getErrorLog().checkError(Condition, SPIRVEC_##ErrCode, std::string()+ErrMsg,\
56 #define SPIRVCKRT(Condition,ErrCode,ErrMsg) \ argument
57 if (!getErrorLog().checkError(Condition, SPIRVEC_##ErrCode,\
85 void setError(SPIRVErrorCode ErrCode, const std::string& ErrMsg) { in setError() argument
86 ErrorCode = ErrCode; in setError()
91 bool checkError(bool Condition, SPIRVErrorCode ErrCode,
103 SPIRVErrorLog::checkError(bool Cond, SPIRVErrorCode ErrCode, in checkError() argument
112 SS << SPIRVErrorMap::map(ErrCode) << " " << Msg; in checkError()
115 setError(ErrCode, SS.str()); in checkError()
/external/compiler-rt/lib/esan/
Desan_sideline_linux.cpp123 int ErrCode; in launchThread() local
124 if (internal_iserror(SidelineId, &ErrCode)) { in launchThread()
126 ErrCode); in launchThread()
139 int ErrCode; in joinThread() local
140 if (!internal_iserror(Status, &ErrCode)) in joinThread()
142 if (ErrCode == EINTR) in joinThread()
144 VPrintf(1, "Failed to join sideline thread (errno %d)\n", ErrCode); in joinThread()
/external/llvm/lib/ExecutionEngine/Orc/
DOrcError.cpp57 Error orcError(OrcErrorCode ErrCode) { in orcError() argument
60 std::error_code(static_cast<UT>(ErrCode), *OrcErrCat)); in orcError()
/external/compiler-rt/lib/tsan/tests/rtl/
Dtsan_test_util_posix.cc319 const int ErrCode = ESOCKTNOSUPPORT; in HandleEvent() local
321 const int ErrCode = ECHRNG; in HandleEvent() local
323 errno = ErrCode; in HandleEvent()
325 CHECK_EQ(ErrCode, errno); // In no case must errno be changed. in HandleEvent()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcError.h34 Error orcError(OrcErrorCode ErrCode);
/external/abi-compliance-checker/modules/Internals/
DSysCheck.pm2544 my $ErrCode = $?;
2553 if(get_CodeError($ErrCode>>8) eq "Invalid_Dump") {
/external/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp71 bool showMatchError(SMLoc Loc, unsigned ErrCode);
3608 bool AArch64AsmParser::showMatchError(SMLoc Loc, unsigned ErrCode) { in showMatchError() argument
3609 switch (ErrCode) { in showMatchError()