Searched refs:connectionErrorf (Results 1 – 4 of 4) sorted by relevance
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
D | http2_client.go | 163 return nil, connectionErrorf(isTemporary(err), err, "transport: error while dialing: %v", err) 165 return nil, connectionErrorf(true, err, "transport: Error while dialing %v", err) 181 …return nil, connectionErrorf(isTemporary(err), err, "transport: authentication handshake failed: %… 275 return nil, connectionErrorf(true, err, "transport: failed to write client preface: %v", err) 279 …return nil, connectionErrorf(true, err, "transport: preface mismatch, wrote %d bytes; want %d", n,… 291 …return nil, connectionErrorf(true, err, "transport: failed to write initial settings frame: %v", e… 297 return nil, connectionErrorf(true, err, "transport: failed to write window update: %v", err)
|
D | http2_server.go | 172 return nil, connectionErrorf(false, err, "transport: %v", err) 177 return nil, connectionErrorf(false, err, "transport: %v", err) 254 …return nil, connectionErrorf(false, err, "transport: http2Server.HandleStreams failed to receive t… 257 …return nil, connectionErrorf(false, nil, "transport: http2Server.HandleStreams received bogus gree… 265 …return nil, connectionErrorf(false, err, "transport: http2Server.HandleStreams failed to read init… 270 …return nil, connectionErrorf(false, nil, "transport: http2Server.HandleStreams saw invalid preface…
|
D | transport.go | 634 func connectionErrorf(temp bool, e error, format string, a ...interface{}) ConnectionError { func 671 ErrConnClosing = connectionErrorf(true, nil, "transport is closing")
|
D | handler_server.go | 450 return connectionErrorf(true, err, err.Error())
|