func google.golang.org/grpc/status.FromError
14 uses
google.golang.org/grpc/status (current package)
status.go#L87: func FromError(err error) (s *Status, ok bool) {
status.go#L102: s, _ := FromError(err)
google.golang.org/grpc
picker_wrapper.go#L138: if st, ok := status.FromError(err); ok {
rpc_util.go#L850: if _, ok := status.FromError(err); ok {
server.go#L1338: appStatus, ok := status.FromError(appErr)
server.go#L1383: if sts, ok := status.FromError(err); ok {
server.go#L1630: appStatus, ok := status.FromError(appErr)
stream.go#L199: if st, ok := status.FromError(err); ok {
stream.go#L1592: st, _ := status.FromError(toRPCErr(err))
stream.go#L1660: st, _ := status.FromError(toRPCErr(err))
google.golang.org/grpc/internal/binarylog
method_logger.go#L328: st, ok := status.FromError(c.Err)
google.golang.org/grpc/internal/transport
http2_client.go#L632: if st, ok := status.FromError(err); ok {
http2_client.go#L665: if st, ok := status.FromError(err); ok {
http2_server.go#L563: stat, ok := status.FromError(err)