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

  /external/syzkaller/vendor/golang.org/x/net/http2/
errors.go 62 // StreamError is an error that only affects one stream within an
64 type StreamError struct {
70 func streamError(id uint32, code ErrCode) StreamError {
71 return StreamError{StreamID: id, Code: code}
74 func (e StreamError) Error() string {
  /external/syzkaller/vendor/google.golang.org/grpc/transport/
transport.go 625 // streamErrorf creates an StreamError with the specified error code and description.
626 func streamErrorf(c codes.Code, format string, a ...interface{}) StreamError {
627 return StreamError{
684 // TODO: See if we can replace StreamError with status package errors.
686 // StreamError is an error that only affects one stream within a connection.
687 type StreamError struct {
692 func (e StreamError) Error() string {
  /external/ImageMagick/MagickCore/
exception.h 62 StreamError = 440,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tarfile.py 338 class StreamError(TarError):
554 raise StreamError("seeking backwards is not allowed")
    [all...]
  /external/python/cpython2/Lib/
tarfile.py 338 class StreamError(TarError):
562 raise StreamError("seeking backwards is not allowed")
    [all...]
  /external/python/cpython3/Lib/
tarfile.py 70 "CompressionError", "StreamError", "ExtractError", "HeaderError",
285 class StreamError(TarError):
520 raise StreamError("seeking backwards is not allowed")
    [all...]

Completed in 327 milliseconds