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

28 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#L163: 		return nil, s.status.Err()
		http2_client.go#L1067: 		err = st.Err()
		http2_client.go#L1239: 				t.closeStream(s, st.Err(), true, http2.ErrCodeProtocol, st, nil, true)
		http2_client.go#L1296: 	t.closeStream(s, st.Err(), false, http2.ErrCodeNo, st, nil, false)
		http2_client.go#L1483: 		t.closeStream(s, st.Err(), true, http2.ErrCodeProtocol, st, nil, false)
		http2_client.go#L1491: 		t.closeStream(s, se.Err(), true, http2.ErrCodeFrameSize, se, nil, endStream)
		http2_client.go#L1501: 			t.closeStream(s, st.Err(), true, http2.ErrCodeProtocol, st, nil, true)
		http2_client.go#L1538: 				t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_client.go#L1573: 				t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_client.go#L1580: 					t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_client.go#L1607: 			t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, true)
		http2_client.go#L1617: 		t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
		http2_server.go#L1034: 			return status.Convert(err).Err()

	google.golang.org/grpc
		clientconn.go#L770: 		return false, status.FromContextError(ctx.Err()).Err()
		rpc_util.go#L954: 		return nil, st.Err()
		server.go#L1368: 			return st.Err()
		server.go#L1450: 			appErr = appStatus.Err()
		server.go#L1693: 			return st.Err()
		server.go#L1744: 			appErr = appStatus.Err()
		stream.go#L778: 		return false, status.FromContextError(cs.ctx.Err()).Err()
		stream.go#L1176: 			if statusErr := a.transportStream.Status().Err(); statusErr != nil {
		stream.go#L1213: 		return a.transportStream.Status().Err() // non-server streaming Recv returns nil on success
		stream.go#L1527: 			if statusErr := as.transportStream.Status().Err(); statusErr != nil {
		stream.go#L1548: 		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()