HomeSort by relevance Sort by last modified time
    Searched refs:streamErrorf (Results 1 - 7 of 7) sorted by null

  /external/syzkaller/vendor/google.golang.org/grpc/transport/
go16.go 41 return streamErrorf(codes.DeadlineExceeded, "%v", err)
43 return streamErrorf(codes.Canceled, "%v", err)
45 return streamErrorf(codes.Internal, "Unexpected error from context packet: %v", err)
go17.go 42 return streamErrorf(codes.DeadlineExceeded, "%v", err)
44 return streamErrorf(codes.Canceled, "%v", err)
46 return streamErrorf(codes.Internal, "Unexpected error from context packet: %v", err)
http_util.go 252 return streamErrorf(codes.Internal, "malformed header: doesn't contain status(gRPC or HTTP)")
260 return streamErrorf(code, http.StatusText(*(d.httpStatus)))
287 return streamErrorf(codes.Internal, "transport: received the unexpected content-type %q", f.Value)
300 return streamErrorf(codes.Internal, "transport: malformed grpc-status: %v", err)
308 return streamErrorf(codes.Internal, "transport: malformed grpc-status-details-bin: %v", err)
312 return streamErrorf(codes.Internal, "transport: malformed grpc-status-details-bin: %v", err)
319 return streamErrorf(codes.Internal, "transport: malformed time-out: %v", err)
326 return streamErrorf(codes.Internal, "transport: malformed http-status: %v", err)
332 return streamErrorf(codes.Internal, "transport: malformed grpc-tags-bin: %v", err)
339 return streamErrorf(codes.Internal, "transport: malformed grpc-trace-bin: %v", err
    [all...]
handler_server.go 83 return nil, streamErrorf(codes.Internal, "malformed time-out: %v", err)
101 return nil, streamErrorf(codes.Internal, "malformed binary metadata: %v", err)
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 {
675 errStreamDrain = streamErrorf(codes.Unavailable, "the connection is draining")
http2_client.go 467 return nil, streamErrorf(codes.Unauthenticated, "transport: %v", err)
485 return nil, streamErrorf(codes.Unauthenticated, "transport: cannot send secure credentials on an insecure connection")
489 return nil, streamErrorf(codes.Internal, "transport: %v", err)
    [all...]
http2_server.go 807 return streamErrorf(codes.Internal, "transport: %v", err)
    [all...]

Completed in 554 milliseconds