HomeSort by relevance Sort by last modified time
    Searched defs:ConnectionError (Results 1 - 5 of 5) sorted by null

  /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) {}
  /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
  /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/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...]

Completed in 703 milliseconds