type net/http.http2pipe
16 uses
net/http (current package)
h2_bundle.go#L3466: type http2pipe struct {
h2_bundle.go#L3483: func (p *http2pipe) Len() int {
h2_bundle.go#L3494: func (p *http2pipe) Read(d []byte) (n int, err error) {
h2_bundle.go#L3523: func (p *http2pipe) Write(d []byte) (n int, err error) {
h2_bundle.go#L3545: func (p *http2pipe) CloseWithError(err error) { p.closeWithError(&p.err, err, nil) }
h2_bundle.go#L3550: func (p *http2pipe) BreakWithError(err error) { p.closeWithError(&p.breakErr, err, nil) }
h2_bundle.go#L3554: func (p *http2pipe) closeWithErrorAndCode(err error, fn func()) { p.closeWithError(&p.err, err, fn) }
h2_bundle.go#L3556: func (p *http2pipe) closeWithError(dst *error, err error, fn func()) {
h2_bundle.go#L3582: func (p *http2pipe) closeDoneLocked() {
h2_bundle.go#L3596: func (p *http2pipe) Err() error {
h2_bundle.go#L3607: func (p *http2pipe) Done() <-chan struct{} {
h2_bundle.go#L4144: body *http2pipe // non-nil if expecting DATA frames
h2_bundle.go#L5603: req.Body.(*http2requestBody).pipe = &http2pipe{
h2_bundle.go#L5860: pipe *http2pipe // non-nil if we have a HTTP entity message body
h2_bundle.go#L6785: bufPipe http2pipe // buffered pipe with the flow-controlled response payload
h2_bundle.go#L8554: cs.bufPipe = http2pipe{b: &http2dataBuffer{expected: res.ContentLength}}
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |