Searched refs:maxStreams (Results 1 – 5 of 5) sorted by relevance
62 private final int maxStreams; field in NettyServerTransport86 int maxStreams, in NettyServerTransport() argument103 this.maxStreams = maxStreams; in NettyServerTransport()259 maxStreams, in createHandler()
137 int maxStreams, in newHandler() argument162 maxStreams, in newHandler()183 int maxStreams, in newHandler() argument194 Preconditions.checkArgument(maxStreams > 0, "maxStreams must be positive"); in newHandler()218 settings.maxConcurrentStreams(maxStreams); in newHandler()
919 var maxStreams *uint32923 maxStreams = new(uint32)924 *maxStreams = s.Val930 if isFirst && maxStreams == nil {931 maxStreams = new(uint32)932 *maxStreams = math.MaxUint32937 if maxStreams == nil {942 delta := int64(*maxStreams) - int64(t.maxConcurrentStreams)943 t.maxConcurrentStreams = *maxStreams
71 maxStreams uint32 member146 maxStreams := config.MaxStreams147 if maxStreams == 0 {148 maxStreams = math.MaxUint32152 Val: maxStreams,214 maxStreams: maxStreams,364 if uint32(len(t.activeStreams)) >= t.maxStreams {
194 tester.maxStreams(); in runTest()268 private void maxStreams() throws Exception { in maxStreams() method in Http2Client.Tester