Searched refs:streamErrorf (Results 1 – 7 of 7) sorted by relevance
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
D | 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)
|
D | 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)
|
D | 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)
|
D | 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)
|
D | transport.go | 626 func streamErrorf(c codes.Code, format string, a ...interface{}) StreamError { func 675 errStreamDrain = streamErrorf(codes.Unavailable, "the connection is draining")
|
D | 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 i… 489 return nil, streamErrorf(codes.Internal, "transport: %v", err) 1149 …t.closeStream(s, streamErrorf(http2ErrConvTab[se.Code], "%v", t.framer.fr.ErrorDetail()), true, ht…
|
D | http2_server.go | 807 return streamErrorf(codes.Internal, "transport: %v", err)
|