google.golang.org/grpc/internal/transport.ConnectOptions.BufferPool (field)

9 uses

	google.golang.org/grpc/internal/transport (current package)
		http2_client.go#L348: 		framer:                newFramer(conn, writeBufSize, readBufSize, opts.SharedWriteBuffer, maxHeaderListSize, opts.BufferPool),
		http2_client.go#L362: 		bufferPool:            opts.BufferPool,
		transport.go#L553: 	BufferPool mem.BufferPool

	google.golang.org/grpc
		dialoptions.go#L726: 			BufferPool:        mem.DefaultBufferPool(),
		dialoptions.go#L810: 		o.copts.BufferPool = bufferPool
		stream.go#L569: 	a.parser = parser{r: s, bufferPool: a.cs.cc.dopts.copts.BufferPool}
		stream.go#L958: 	hdr, data, payload, pf, err := prepareMsg(m, cs.codec, cs.compressorV0, cs.compressorV1, cs.cc.dopts.copts.BufferPool)
		stream.go#L1365: 	as.parser = parser{r: s, bufferPool: ac.dopts.copts.BufferPool}
		stream.go#L1465: 	hdr, data, payload, pf, err := prepareMsg(m, as.codec, as.sendCompressorV0, as.sendCompressorV1, as.ac.dopts.copts.BufferPool)