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#L1152: if _, ok := status.FromError(err); ok {
server.go#L1445: appStatus, ok := status.FromError(appErr)
server.go#L1495: if sts, ok := status.FromError(err); ok {
server.go#L1739: appStatus, ok := status.FromError(appErr)
stream.go#L254: if st, ok := status.FromError(err); ok {
stream.go#L1726: st, _ := status.FromError(toRPCErr(err))
stream.go#L1809: 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#L682: if st, ok := status.FromError(err); ok {
http2_client.go#L715: if st, ok := status.FromError(err); ok {
http2_server.go#L573: stat, ok := status.FromError(err)