Searched refs:mSslSession (Results 1 – 1 of 1) sorted by relevance
102 private final SSLSession mSslSession; field in TlsSession125 mSslSession = mSslEngine.getSession(); in TlsSession()126 mApplicationData = ByteBuffer.allocate(mSslSession.getApplicationBufferSize()); in TlsSession()127 mPacketData = ByteBuffer.allocate(mSslSession.getPacketBufferSize()); in TlsSession()139 mSslSession = sslSession; in TlsSession()140 mApplicationData = ByteBuffer.allocate(mSslSession.getApplicationBufferSize()); in TlsSession()141 mPacketData = ByteBuffer.allocate(mSslSession.getPacketBufferSize()); in TlsSession()455 if (mPacketData.capacity() < mSslSession.getPacketBufferSize()) { in clearAndGrowPacketBufferIfNeeded()456 mPacketData = ByteBuffer.allocate(mSslSession.getPacketBufferSize()); in clearAndGrowPacketBufferIfNeeded()466 if (mApplicationData.capacity() < mSslSession.getApplicationBufferSize()) { in clearAndGrowApplicationBufferIfNeeded()[all …]