Searched defs:bytesProduced (Results 1 - 1 of 1) sorted by relevance

/dalvik/libcore/x-net/src/main/java/javax/net/ssl/
H A DSSLEngineResult.java90 // Store bytesProduced
91 private final int bytesProduced; field in class:SSLEngineResult
103 * @param bytesProduced
111 SSLEngineResult.HandshakeStatus handshakeStatus, int bytesConsumed, int bytesProduced) {
121 if (bytesProduced < 0) {
122 throw new IllegalArgumentException("bytesProduced is negative");
127 this.bytesProduced = bytesProduced;
162 public final int bytesProduced() { method in class:SSLEngineResult
163 return bytesProduced;
110 SSLEngineResult(SSLEngineResult.Status status, SSLEngineResult.HandshakeStatus handshakeStatus, int bytesConsumed, int bytesProduced) argument
[all...]

Completed in 52 milliseconds