Home
last modified time | relevance | path

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

/external/syzkaller/vendor/golang.org/x/net/http2/
Derrors.go13 type ErrCode uint32 type
16 ErrCodeNo ErrCode = 0x0
17 ErrCodeProtocol ErrCode = 0x1
18 ErrCodeInternal ErrCode = 0x2
19 ErrCodeFlowControl ErrCode = 0x3
20 ErrCodeSettingsTimeout ErrCode = 0x4
21 ErrCodeStreamClosed ErrCode = 0x5
22 ErrCodeFrameSize ErrCode = 0x6
23 ErrCodeRefusedStream ErrCode = 0x7
24 ErrCodeCancel ErrCode = 0x8
[all …]
Dframe.go526 func (fr *Framer) connError(code ErrCode, reason string) error {
827 ErrCode ErrCode member
850 ErrCode: ErrCode(binary.BigEndian.Uint32(p[4:8])),
855 func (f *Framer) WriteGoAway(maxStreamID uint32, code ErrCode, debugData []byte) error {
1137 ErrCode ErrCode member
1147 return &RSTStreamFrame{fh, ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
1154 func (f *Framer) WriteRSTStream(streamID uint32, code ErrCode) error {
1574 f.LastStreamID, f.ErrCode, f.debugData)
1576 fmt.Fprintf(&buf, " ErrCode=%v", f.ErrCode)
Dtransport.go611 if old != nil && old.ErrCode != ErrCodeNo {
612 cc.goAway.ErrCode = old.ErrCode
1415 cc.fr.WriteGoAway(0, ErrCode(ce), nil)
1424 ErrCode ErrCode member
1430 e.LastStreamID, e.ErrCode, e.DebugData)
1459 ErrCode: cc.goAway.ErrCode,
1966 if f.ErrCode != 0 {
1968 cc.vlogf("transport got GOAWAY with error code = %v", f.ErrCode)
2066 err := streamError(cs.ID, f.ErrCode)
2147 func (cc *ClientConn) writeStreamReset(streamID uint32, code ErrCode, err error) {
Dserver.go438 func (sc *serverConn) rejectConn(err ErrCode, debug string) { argument
491 goAwayCode ErrCode
1253 func (sc *serverConn) goAway(code ErrCode) {
1320 sc.goAway(ErrCode(ev))
1438 sc.closeStream(st, streamError(f.StreamID, f.ErrCode))
1649 if f.ErrCode != ErrCodeNo {
Dwrite.go87 code ErrCode
/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/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
DOrcError.cpp77 std::error_code orcError(OrcErrorCode ErrCode) { in orcError() argument
79 return std::error_code(static_cast<UT>(ErrCode), *OrcErrCat); in orcError()
/external/epid-sdk/ext/ipp/sources/include/
Downdefs.h387 #define IPP_ERROR_RET( ErrCode ) return (ErrCode) argument
391 #define IPP_BADARG_RET( expr, ErrCode )\ argument
392 {if (expr) { IPP_ERROR_RET( ErrCode ); }}
396 #define IPP_BADARG_RET( expr, ErrCode ) argument
/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/syzkaller/vendor/google.golang.org/grpc/transport/
Dhttp2_client.go630 rstCode http2.ErrCode
639 func (t *http2Client) closeStream(s *Stream, err error, rst bool, rstCode http2.ErrCode, st *status…
903 if f.ErrCode == http2.ErrCodeRefusedStream {
907 statusCode, ok := http2ErrConvTab[f.ErrCode]
909 …ttp2Client.handleRSTStream found no mapped gRPC status for the received http2 error %v", f.ErrCode)
912 …tus.Newf(statusCode, "stream terminated by RST_STREAM with error code: %v", f.ErrCode), nil, false)
973 if f.ErrCode == http2.ErrCodeEnhanceYourCalm {
1033 switch f.ErrCode {
Dhttp_util.go59 http2ErrConvTab = map[http2.ErrCode]codes.Code{
75 statusCodeConvTab = map[codes.Code]http2.ErrCode{
Dcontrolbuf.go109 rstCode http2.ErrCode
148 code http2.ErrCode
Dhttp2_server.go965 func (t *http2Server) closeStream(s *Stream, rst bool, rstCode http2.ErrCode, hdr *headerFrame, eos…
1014 func (t *http2Server) drain(code http2.ErrCode, debugData []byte) {
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcError.h34 Error orcError(OrcErrorCode ErrCode);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcError.h42 std::error_code orcError(OrcErrorCode ErrCode);
/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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp163 bool showMatchError(SMLoc Loc, unsigned ErrCode, uint64_t ErrorInfo,
4022 bool AArch64AsmParser::showMatchError(SMLoc Loc, unsigned ErrCode, in showMatchError() argument
4025 switch (ErrCode) { in showMatchError()