func google.golang.org/grpc/status.FromError

14 uses

	google.golang.org/grpc/status (current package)
		status.go#L96: func FromError(err error) (s *Status, ok bool) {
		status.go#L132: 	s, _ := FromError(err)

	google.golang.org/grpc
		picker_wrapper.go#L162: 			if st, ok := status.FromError(err); ok {
		rpc_util.go#L1031: 	if _, ok := status.FromError(err); ok {
		server.go#L1433: 		appStatus, ok := status.FromError(appErr)
		server.go#L1483: 		if sts, ok := status.FromError(err); ok {
		server.go#L1732: 		appStatus, ok := status.FromError(appErr)
		stream.go#L229: 		if st, ok := status.FromError(err); ok {
		stream.go#L1678: 			st, _ := status.FromError(toRPCErr(err))
		stream.go#L1763: 			st, _ := status.FromError(toRPCErr(err))

	google.golang.org/grpc/internal/binarylog
		method_logger.go#L339: 	st, ok := status.FromError(c.Err)

	google.golang.org/grpc/internal/transport
		http2_client.go#L663: 			if st, ok := status.FromError(err); ok {
		http2_client.go#L696: 			if st, ok := status.FromError(err); ok {
		http2_server.go#L589: 			stat, ok := status.FromError(err)