Home
last modified time | relevance | path

Searched refs:ConnectionError (Results 1 – 25 of 38) sorted by relevance

12

/external/deqp/execserver/
DxsDefs.hpp71 class ConnectionError : public Error class
74 ConnectionError (const std::string& message) : Error(message) {} in ConnectionError() function in xs::ConnectionError
77 class ProtocolError : public ConnectionError
80 ProtocolError (const std::string& message) : ConnectionError(message) {} in ProtocolError()
DxsExecutionServer.cpp365 throw ConnectionError("Connection terminated"); in receive()
367 throw ConnectionError("receive() failed"); in receive()
398 throw ConnectionError("Connection terminated"); in send()
400 throw ConnectionError("send() failed"); in send()
/external/syzkaller/vendor/golang.org/x/net/http2/
Dframe.go528 return ConnectionError(code)
706 return nil, ConnectionError(ErrCodeFrameSize)
716 return nil, ConnectionError(ErrCodeProtocol)
720 return nil, ConnectionError(ErrCodeFrameSize)
727 return nil, ConnectionError(ErrCodeFlowControl)
802 return nil, ConnectionError(ErrCodeFrameSize)
805 return nil, ConnectionError(ErrCodeProtocol)
842 return nil, ConnectionError(ErrCodeProtocol)
845 return nil, ConnectionError(ErrCodeFrameSize)
893 return nil, ConnectionError(ErrCodeFrameSize)
[all …]
Dhttp2.go133 return ConnectionError(ErrCodeProtocol)
137 return ConnectionError(ErrCodeFlowControl)
141 return ConnectionError(ErrCodeProtocol)
Derrors.go58 type ConnectionError ErrCode type
60 func (e ConnectionError) Error() string { return fmt.Sprintf("connection error: %s", ErrCode(e)) }
Dtransport.go1413 if ce, ok := cc.readerErr.(ConnectionError); ok {
1507 return ConnectionError(ErrCodeProtocol)
1595 if _, ok := err.(ConnectionError); ok {
1707 return ConnectionError(ErrCodeProtocol)
1713 return ConnectionError(ErrCodeProtocol)
1718 return ConnectionError(ErrCodeProtocol)
1844 return ConnectionError(ErrCodeProtocol)
1887 return ConnectionError(ErrCodeFlowControl)
1984 return ConnectionError(ErrCodeProtocol)
2001 return ConnectionError(ErrCodeFlowControl)
[all …]
Dserver.go1318 case ConnectionError:
1338 return ConnectionError(ErrCodeProtocol)
1363 return ConnectionError(ErrCodeProtocol)
1383 return ConnectionError(ErrCodeProtocol)
1402 return ConnectionError(ErrCodeProtocol)
1434 return ConnectionError(ErrCodeProtocol)
1486 return ConnectionError(ErrCodeProtocol)
1553 return ConnectionError(ErrCodeFlowControl)
1576 return ConnectionError(ErrCodeProtocol)
1712 return ConnectionError(ErrCodeProtocol)
[all …]
/external/autotest/server/site_tests/firmware_LegacyRecovery/
Dfirmware_LegacyRecovery.py9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
43 except ConnectionError:
59 except ConnectionError:
/external/autotest/server/site_tests/firmware_ConsecutiveBoot/
Dfirmware_ConsecutiveBoot.py12 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
75 except ConnectionError:
80 raise ConnectionError()
/external/syzkaller/vendor/google.golang.org/grpc/transport/
Dtransport.go634 func connectionErrorf(temp bool, e error, format string, a ...interface{}) ConnectionError {
635 return ConnectionError{
644 type ConnectionError struct { struct
650 func (e ConnectionError) Error() string { argument
655 func (e ConnectionError) Temporary() bool { argument
660 func (e ConnectionError) Origin() error { argument
/external/autotest/server/site_tests/firmware_CorruptFwSigB/
Dfirmware_CorruptFwSigB.py8 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
27 except ConnectionError:
/external/autotest/server/cros/faft/utils/
Dmode_switcher.py14 class ConnectionError(Exception): class
684 raise ConnectionError('DUT is still down unexpectedly')
706 raise ConnectionError('DUT is still up unexpectedly')
811 raise ConnectionError('DUT is still down unexpectedly')
828 raise ConnectionError('DUT is still up unexpectedly')
887 except ConnectionError:
917 except ConnectionError:
/external/autotest/server/site_tests/firmware_CorruptFwSigA/
Dfirmware_CorruptFwSigA.py8 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
27 except ConnectionError:
/external/autotest/server/site_tests/firmware_CorruptFwBodyB/
Dfirmware_CorruptFwBodyB.py9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
34 except ConnectionError:
/external/autotest/server/site_tests/firmware_CorruptFwBodyA/
Dfirmware_CorruptFwBodyA.py9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
34 except ConnectionError:
/external/autotest/server/site_tests/firmware_InvalidUSB/
Dfirmware_InvalidUSB.py9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
67 except ConnectionError:
/external/autotest/server/site_tests/firmware_CorruptRecoveryCache/
Dfirmware_CorruptRecoveryCache.py10 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
39 except ConnectionError:
/external/autotest/server/site_tests/firmware_ECLidShutdown/
Dfirmware_ECLidShutdown.py10 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
45 except ConnectionError:
/external/autotest/server/cros/faft/
Dfirmware_test.py26 ConnectionError = mode_switcher.ConnectionError variable
259 except ConnectionError:
283 except ConnectionError:
297 except ConnectionError:
309 except ConnectionError:
324 except ConnectionError:
340 except ConnectionError:
1235 except ConnectionError:
/external/python/cpython3/Lib/test/
Dexception_hierarchy.txt27 | +-- ConnectionError
/external/syzkaller/vendor/google.golang.org/grpc/
Dgo16.go59 case transport.ConnectionError:
Dgo17.go60 case transport.ConnectionError:
/external/autotest/client/common_lib/cros/
Dgs_cache_client_unittest.py101 m.side_effect = requests.ConnectionError('Gs Cache is not running.')
Dgs_cache_client.py156 except requests.ConnectionError as err:
/external/python/cpython3/Doc/library/
Dexceptions.rst579 .. exception:: ConnectionError
588 A subclass of :exc:`ConnectionError`, raised when trying to write on a
595 A subclass of :exc:`ConnectionError`, raised when a connection attempt
601 A subclass of :exc:`ConnectionError`, raised when a connection attempt
607 A subclass of :exc:`ConnectionError`, raised when a connection is

12