google.golang.org/grpc/internal/transport.outStream.bytesOutStanding (field)

6 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L210: 	bytesOutStanding int
		controlbuf.go#L574: 		str.bytesOutStanding -= int(w.increment)
		controlbuf.go#L575: 		if strQuota := int(l.oiws) - str.bytesOutStanding; strQuota > 0 && str.state == waitingOnStreamQuota {
		controlbuf.go#L870: 	if strQuota := int(l.oiws) - str.bytesOutStanding; strQuota <= 0 { // stream-level flow control.
		controlbuf.go#L912: 	str.bytesOutStanding += size
		controlbuf.go#L929: 	} else if int(l.oiws)-str.bytesOutStanding <= 0 { // Ran out of stream quota.