golang.org/x/net/http2.DataFrame.Data (method)
12 uses
golang.org/x/net/http2 (current package)
frame.go#L586: func (f *DataFrame) Data() []byte {
frame.go#L1591: data := f.Data()
frame.go#L1597: if len(f.Data()) > max {
frame.go#L1598: fmt.Fprintf(&buf, " (%d bytes omitted)", len(f.Data())-max)
server.go#L1646: data := f.Data()
transport.go#L2198: data := f.Data()
google.golang.org/grpc/internal/transport
http2_client.go#L987: if w := s.fc.onRead(size - uint32(len(f.Data()))); w > 0 {
http2_client.go#L994: if len(f.Data()) > 0 {
http2_client.go#L997: buffer.Write(f.Data())
http2_server.go#L624: if w := s.fc.onRead(size - uint32(len(f.Data()))); w > 0 {
http2_server.go#L631: if len(f.Data()) > 0 {
http2_server.go#L634: buffer.Write(f.Data())
![]() |
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. |