HomeSort by relevance Sort by last modified time
    Searched refs:ConnectionError (Results 1 - 25 of 32) sorted by null

1 2

  /external/deqp/execserver/
xsDefs.hpp 71 class ConnectionError : public Error
74 ConnectionError (const std::string& message) : Error(message) {}
77 class ProtocolError : public ConnectionError
80 ProtocolError (const std::string& message) : ConnectionError(message) {}
xsExecutionServer.cpp 365 throw ConnectionError("Connection terminated");
367 throw ConnectionError("receive() failed");
398 throw ConnectionError("Connection terminated");
400 throw ConnectionError("send() failed");
  /external/autotest/server/site_tests/firmware_LegacyRecovery/
firmware_LegacyRecovery.py 9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
43 except ConnectionError:
59 except ConnectionError:
  /external/autotest/server/site_tests/firmware_CorruptFwSigA/
firmware_CorruptFwSigA.py 8 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
27 except ConnectionError:
  /external/autotest/server/site_tests/firmware_CorruptFwSigB/
firmware_CorruptFwSigB.py 8 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
27 except ConnectionError:
  /external/autotest/server/site_tests/firmware_ConsecutiveBoot/
firmware_ConsecutiveBoot.py 12 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
75 except ConnectionError:
80 raise ConnectionError()
  /external/syzkaller/vendor/golang.org/x/net/http2/
errors.go 56 // ConnectionError is an error that results in the termination of the
58 type ConnectionError ErrCode
60 func (e ConnectionError) Error() string { return fmt.Sprintf("connection error: %s", ErrCode(e)) }
90 // connError represents an HTTP/2 ConnectionError error code, along
94 // and converted into ConnectionError(Code), after stashing away
98 Code ErrCode // the ConnectionError error code
frame.go 485 // ConnectionError, StreamError, or anything else from the underlying
522 // connError returns ConnectionError(code) but first
528 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
    [all...]
http2.go 133 return ConnectionError(ErrCodeProtocol)
137 return ConnectionError(ErrCodeFlowControl)
141 return ConnectionError(ErrCodeProtocol)
transport.go     [all...]
  /external/autotest/server/site_tests/firmware_CorruptFwBodyA/
firmware_CorruptFwBodyA.py 9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
34 except ConnectionError:
  /external/autotest/server/site_tests/firmware_CorruptFwBodyB/
firmware_CorruptFwBodyB.py 9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
34 except ConnectionError:
  /external/autotest/server/site_tests/firmware_InvalidUSB/
firmware_InvalidUSB.py 9 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
67 except ConnectionError:
  /external/autotest/server/site_tests/firmware_CorruptRecoveryCache/
firmware_CorruptRecoveryCache.py 10 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
39 except ConnectionError:
  /external/autotest/server/site_tests/firmware_ECLidShutdown/
firmware_ECLidShutdown.py 10 from autotest_lib.server.cros.faft.firmware_test import ConnectionError
45 except ConnectionError:
  /external/autotest/server/cros/faft/utils/
mode_switcher.py 14 class ConnectionError(Exception):
671 @raise ConnectionError: Failed to connect DUT.
684 raise ConnectionError('DUT is still down unexpectedly')
693 @raise ConnectionError: Failed to wait DUT offline.
706 raise ConnectionError('DUT is still up unexpectedly')
808 @raise ConnectionError: Failed to connect DUT.
811 raise ConnectionError('DUT is still down unexpectedly')
    [all...]
  /external/syzkaller/vendor/google.golang.org/grpc/transport/
transport.go 633 // connectionErrorf creates an ConnectionError with the specified error description.
634 func connectionErrorf(temp bool, e error, format string, a ...interface{}) ConnectionError {
635 return ConnectionError{
642 // ConnectionError is an error that results in the termination of the
644 type ConnectionError struct {
650 func (e ConnectionError) Error() string {
655 func (e ConnectionError) Temporary() bool {
660 func (e ConnectionError) Origin() error {
  /external/syzkaller/vendor/google.golang.org/grpc/
go16.go 59 case transport.ConnectionError:
go17.go 60 case transport.ConnectionError:
  /external/autotest/server/cros/faft/
firmware_test.py 26 ConnectionError = mode_switcher.ConnectionError
259 except ConnectionError:
283 except ConnectionError:
297 except ConnectionError:
309 except ConnectionError:
324 except ConnectionError:
340 except ConnectionError:
    [all...]
  /bionic/tools/bionicbb/
presubmit.py 155 except requests.exceptions.ConnectionError as ex:
  /external/autotest/client/common_lib/cros/
gs_cache_client.py 156 except requests.ConnectionError as err:
gs_cache_client_unittest.py 101 m.side_effect = requests.ConnectionError('Gs Cache is not running.')
  /external/libchrome/mojo/public/cpp/bindings/tests/
binding_unittest.cc 124 TEST_P(BindingTest, ConnectionError) {
  /external/python/cpython3/Lib/asyncio/
unix_events.py 371 type(exc) is not ConnectionError):
374 # of the operation, normalize the error to ConnectionError
376 new_exc = ConnectionError(
    [all...]

Completed in 397 milliseconds

1 2