google.golang.org/grpc/internal/transport.dataFrame.h (field)

11 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L134: 	h         []byte
		controlbuf.go#L845: 	if len(dataItem.h) == 0 && len(dataItem.d) == 0 { // Empty data frame
		controlbuf.go#L880: 	hSize := min(maxSize, len(dataItem.h))
		controlbuf.go#L884: 			buf = dataItem.h
		controlbuf.go#L889: 			copy(localBuf[:hSize], dataItem.h)
		controlbuf.go#L903: 	if dataItem.endStream && len(dataItem.h)+len(dataItem.d) <= size {
		controlbuf.go#L914: 	dataItem.h = dataItem.h[hSize:]
		controlbuf.go#L917: 	if len(dataItem.h) == 0 && len(dataItem.d) == 0 { // All the data from that message was written out.
		http2_client.go#L882: 		h:         hdr,
		http2_server.go#L934: 		h:           hdr,