Home
last modified time | relevance | path

Searched refs:maxIdleTime (Results 1 – 22 of 22) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/io/bio/
DSocketEndPoint.java58 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/
DWebSocketServletConnectionD06.java31 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketServletConnectionD06() argument
34 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol); in WebSocketServletConnectionD06()
DWebSocketServletConnectionD08.java32 …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()
DWebSocketServletConnectionRFC6455.java32 …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()
DWebSocketClientFactory.java287 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()
DWebSocketServletConnectionD00.java33 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketServletConnectionD00() argument
36 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol); in WebSocketServletConnectionD00()
DWebSocketConnectionD08.java116 …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()
DWebSocketConnectionRFC6455.java148 …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()
DWebSocketConnectionD00.java54 …cket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protoco… in WebSocketConnectionD00() argument
59 _endp.setMaxIdleTime(maxIdleTime); in WebSocketConnectionD00()
DWebSocketClient.java166 public void setMaxIdleTime(int maxIdleTime) in setMaxIdleTime() argument
168 _maxIdleTime=maxIdleTime; in setMaxIdleTime()
DWebSocketFactory.java140 public void setMaxIdleTime(int maxIdleTime) in setMaxIdleTime() argument
142 _maxIdleTime = maxIdleTime; in setMaxIdleTime()
DWebSocketConnectionD06.java109 …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/
DAbstractGenerator.java434 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()
DHttpParser.java1177 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/
DAbstractConnector.java202 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/
DSelectChannelConnector.java200 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/
DNetworkTrafficSelectChannelEndPoint.java38 …el channel, SelectorManager.SelectSet selectSet, SelectionKey key, int maxIdleTime, List<NetworkTr… in NetworkTrafficSelectChannelEndPoint() argument
40 super(channel, selectSet, key, maxIdleTime); in NetworkTrafficSelectChannelEndPoint()
DChannelEndPoint.java72 protected ChannelEndPoint(ByteChannel channel, int maxIdleTime) throws IOException in ChannelEndPoint() argument
75 _maxIdleTime=maxIdleTime; in ChannelEndPoint()
DSelectChannelEndPoint.java96 …electChannelEndPoint(SocketChannel channel, SelectSet selectSet, SelectionKey key, int maxIdleTime) in SelectChannelEndPoint() argument
99 super(channel, maxIdleTime); in SelectChannelEndPoint()
DSelectorManager.java82 public void setMaxIdleTime(long maxIdleTime) in setMaxIdleTime() argument
84 _maxIdleTime=(int)maxIdleTime; in setMaxIdleTime()
/external/jetty/src/resources/org/eclipse/jetty/server/jmx/
DConnector-mbean.properties13 maxIdleTime: Maximum time in ms that a connection can be idle before being closed key
/external/jetty/
DVERSION.txt478 + 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