google.golang.org/grpc/internal/status.Status.Err (method)

25 uses

	google.golang.org/grpc/internal/status (current package)
		status.go#L92: 	return New(c, msg).Err()
		status.go#L125: func (s *Status) Err() error {

	google.golang.org/grpc/internal/transport
		client_stream.go#L125: 		return nil, s.status.Err()
		http2_client.go#L1045: 		err = st.Err()
		http2_client.go#L1262: 	t.closeStream(s, st.Err(), false, http2.ErrCodeNo, st, nil, false)
		http2_client.go#L1448: 		t.closeStream(s, st.Err(), true, http2.ErrCodeProtocol, st, nil, false)
		http2_client.go#L1456: 		t.closeStream(s, se.Err(), true, http2.ErrCodeFrameSize, se, nil, endStream)
		http2_client.go#L1495: 				t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_client.go#L1512: 				t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_client.go#L1556: 		t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_client.go#L1562: 		t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_server.go#L1032: 			return status.Convert(err).Err()

	google.golang.org/grpc
		clientconn.go#L714: 		return false, status.FromContextError(ctx.Err()).Err()
		rpc_util.go#L859: 		return nil, st.Err()
		server.go#L1356: 			return st.Err()
		server.go#L1438: 			appErr = appStatus.Err()
		server.go#L1686: 			return st.Err()
		server.go#L1737: 			appErr = appStatus.Err()
		stream.go#L739: 		return false, status.FromContextError(cs.ctx.Err()).Err()
		stream.go#L1144: 			if statusErr := a.transportStream.Status().Err(); statusErr != nil {
		stream.go#L1176: 		return a.transportStream.Status().Err() // non-server streaming Recv returns nil on success
		stream.go#L1484: 			if statusErr := as.transportStream.Status().Err(); statusErr != nil {
		stream.go#L1500: 		return as.transportStream.Status().Err() // non-server streaming Recv returns nil on success

	google.golang.org/grpc/status
		status.go#L59: 	return New(c, msg).Err()
		status.go#L69: 	return FromProto(s).Err()