/external/jetty/src/java/org/eclipse/jetty/io/bio/ |
D | SocketEndPoint.java | 58 protected SocketEndPoint(Socket socket, int maxIdleTime) in SocketEndPoint() argument 65 _socket.setSoTimeout(maxIdleTime>0?maxIdleTime:0); in SocketEndPoint() 66 super.setMaxIdleTime(maxIdleTime); in SocketEndPoint()
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
D | WebSocketServletConnectionD06.java | 31 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketServletConnectionD06() argument 34 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol); in WebSocketServletConnectionD06()
|
D | WebSocketServletConnectionD08.java | 32 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketServletConnectionD08() argument 35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft); in WebSocketServletConnectionD08()
|
D | WebSocketServletConnectionRFC6455.java | 32 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketServletConnectionRFC6455() argument 35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft); in WebSocketServletConnectionRFC6455()
|
D | WebSocketClientFactory.java | 287 int maxIdleTime = holder.getMaxIdleTime(); in newEndPoint() local 288 if (maxIdleTime < 0) in newEndPoint() 289 maxIdleTime = (int)getMaxIdleTime(); in newEndPoint() 290 … SelectChannelEndPoint result = new SelectChannelEndPoint(channel, selectSet, key, maxIdleTime); in newEndPoint() 561 …cket, EndPoint endPoint, WebSocketBuffers buffers, long timeStamp, int maxIdleTime, String protoco… in WebSocketClientConnection() argument 563 …super(webSocket, endPoint, buffers, timeStamp, maxIdleTime, protocol, extensions, draftVersion, ma… in WebSocketClientConnection()
|
D | WebSocketServletConnectionD00.java | 33 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketServletConnectionD00() argument 36 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol); in WebSocketServletConnectionD00()
|
D | WebSocketConnectionD08.java | 116 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionD08() argument 119 this(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft,null); in WebSocketConnectionD08() 123 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionD08() argument 131 _endp.setMaxIdleTime(maxIdleTime); in WebSocketConnectionD08()
|
D | WebSocketConnectionRFC6455.java | 148 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionRFC6455() argument 151 this(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft,null); in WebSocketConnectionRFC6455() 155 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionRFC6455() argument 163 _endp.setMaxIdleTime(maxIdleTime); in WebSocketConnectionRFC6455()
|
D | WebSocketConnectionD00.java | 54 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionD00() argument 59 _endp.setMaxIdleTime(maxIdleTime); in WebSocketConnectionD00()
|
D | WebSocketClient.java | 166 public void setMaxIdleTime(int maxIdleTime) in setMaxIdleTime() argument 168 _maxIdleTime=maxIdleTime; in setMaxIdleTime()
|
D | WebSocketFactory.java | 140 public void setMaxIdleTime(int maxIdleTime) in setMaxIdleTime() argument 142 _maxIdleTime = maxIdleTime; in setMaxIdleTime()
|
D | WebSocketConnectionD06.java | 109 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionD06() argument 114 _endp.setMaxIdleTime(maxIdleTime); in WebSocketConnectionD06()
|
/external/jetty/src/java/org/eclipse/jetty/http/ |
D | AbstractGenerator.java | 434 public void flush(long maxIdleTime) throws IOException in flush() argument 438 long end=now+maxIdleTime; in flush() 506 public void blockForOutput(long maxIdleTime) throws IOException in blockForOutput() argument 522 if (!_endp.blockWritable(maxIdleTime)) in blockForOutput()
|
D | HttpParser.java | 1177 public Buffer blockForContent(long maxIdleTime) throws IOException in blockForContent() argument 1197 if (!_endp.blockReadable(maxIdleTime)) in blockForContent()
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
D | AbstractConnector.java | 202 public void setMaxIdleTime(int maxIdleTime) in setMaxIdleTime() argument 204 _maxIdleTime = maxIdleTime; in setMaxIdleTime() 221 public void setLowResourcesMaxIdleTime(int maxIdleTime) in setLowResourcesMaxIdleTime() argument 223 _lowResourceMaxIdleTime = maxIdleTime; in setLowResourcesMaxIdleTime() 244 public final void setLowResourceMaxIdleTime(int maxIdleTime) in setLowResourceMaxIdleTime() argument 246 setLowResourcesMaxIdleTime(maxIdleTime); in setLowResourceMaxIdleTime()
|
/external/jetty/src/java/org/eclipse/jetty/server/nio/ |
D | SelectChannelConnector.java | 200 public void setMaxIdleTime(int maxIdleTime) in setMaxIdleTime() argument 202 _manager.setMaxIdleTime(maxIdleTime); in setMaxIdleTime() 203 super.setMaxIdleTime(maxIdleTime); in setMaxIdleTime()
|
/external/jetty/src/java/org/eclipse/jetty/io/nio/ |
D | NetworkTrafficSelectChannelEndPoint.java | 38 …el channel, SelectorManager.SelectSet selectSet, SelectionKey key, int maxIdleTime, List<NetworkTr… in NetworkTrafficSelectChannelEndPoint() argument 40 super(channel, selectSet, key, maxIdleTime); in NetworkTrafficSelectChannelEndPoint()
|
D | ChannelEndPoint.java | 72 protected ChannelEndPoint(ByteChannel channel, int maxIdleTime) throws IOException in ChannelEndPoint() argument 75 _maxIdleTime=maxIdleTime; in ChannelEndPoint()
|
D | SelectChannelEndPoint.java | 96 …electChannelEndPoint(SocketChannel channel, SelectSet selectSet, SelectionKey key, int maxIdleTime) in SelectChannelEndPoint() argument 99 super(channel, maxIdleTime); in SelectChannelEndPoint()
|
D | SelectorManager.java | 82 public void setMaxIdleTime(long maxIdleTime) in setMaxIdleTime() argument 84 _maxIdleTime=(int)maxIdleTime; in setMaxIdleTime()
|
/external/jetty/src/resources/org/eclipse/jetty/server/jmx/ |
D | Connector-mbean.properties | 13 maxIdleTime: Maximum time in ms that a connection can be idle before being closed key
|
/external/jetty/ |
D | VERSION.txt | 478 + 380866 maxIdleTime set to 0 after session migration 650 + 367716 simplified maxIdleTime logic 729 + 367716 simplified maxIdleTime logic 1097 + 349896 SCEP supports zero maxIdleTime 1542 + 316119 Fixed maxIdleTime for SocketEndPoint 2964 + JETTY-370 ensure maxIdleTime<=0 means connections never expire
|