golang.org/x/net/http2.FrameHeader.Length (field)

27 uses

	golang.org/x/net/http2 (current package)
		frame.go#L165: 	Length uint32
		frame.go#L208: 	fmt.Fprintf(buf, " len=%d", h.Length)
		frame.go#L242: 		Length:   (uint32(buf[0])<<16 | uint32(buf[1])<<8 | uint32(buf[2])),
		frame.go#L502: 	if fh.Length > fr.maxReadSize {
		frame.go#L505: 	payload := fr.getReadBuf(fh.Length)
		frame.go#L717: 	if fh.Flags.Has(FlagSettingsAck) && fh.Length > 0 {
		server.go#L1518: 			if !sc.inflow.take(f.Length) {
		server.go#L1521: 			sc.sendWindowUpdate(nil, int(f.Length)) // conn-level
		server.go#L1790: 		if !sc.inflow.take(f.Length) {
		server.go#L1793: 		sc.sendWindowUpdate(nil, int(f.Length)) // conn-level
		server.go#L1807: 		if !sc.inflow.take(f.Length) {
		server.go#L1810: 		sc.sendWindowUpdate(nil, int(f.Length)) // conn-level
		server.go#L1818: 	if f.Length > 0 {
		server.go#L1820: 		if !takeInflows(&sc.inflow, &st.inflow, f.Length) {
		server.go#L1827: 				sc.sendWindowUpdate(nil, int(f.Length)-wrote)
		server.go#L1841: 		pad := int32(f.Length) - int32(len(data))
		transport.go#L2611: 		if f.Length > 0 {
		transport.go#L2613: 			ok := cc.inflow.take(f.Length)
		transport.go#L2614: 			connAdd := cc.inflow.add(int(f.Length))
		transport.go#L2644: 	if f.Length > 0 {
		transport.go#L2655: 		if !takeInflows(&cc.inflow, &cs.inflow, f.Length) {
		transport.go#L2662: 		if pad := int(f.Length) - len(data); pad > 0 {

	google.golang.org/grpc/internal/transport
		http2_client.go#L1108: 	size := f.Header().Length
		http2_client.go#L1536: 				WireLength:  int(frame.Header().Length),
		http2_client.go#L1544: 				WireLength: int(frame.Header().Length),
		http2_server.go#L597: 			WireLength:  int(frame.Header().Length),
		http2_server.go#L748: 	size := f.Header().Length