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

/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLEngineResult.java157 private final int bytesProduced; field in class:SSLEngineResult
171 * @param bytesProduced
177 * <code>bytesProduced</code> is negative.
180 int bytesConsumed, int bytesProduced) {
183 (bytesConsumed < 0) || (bytesProduced < 0)) {
190 this.bytesProduced = bytesProduced;
226 final public int bytesProduced() { method in class:SSLEngineResult
227 return bytesProduced;
237 " bytesProduced
179 SSLEngineResult(Status status, HandshakeStatus handshakeStatus, int bytesConsumed, int bytesProduced) argument
[all...]
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DCheckStatus.java108 if ((produced != -1) && (produced != result.bytesProduced())) {
110 " got = " + result.bytesProduced());
118 if ((produced != -1) && (bbOut.position() != result.bytesProduced())) {
158 Status.OK, HandshakeStatus.NEED_TASK, result1.bytesProduced(), 0);
178 Status.OK, HandshakeStatus.NEED_TASK, result2.bytesProduced(), 0);
193 Status.OK, HandshakeStatus.NEED_TASK, result1.bytesProduced(), 0);
209 result1.bytesProduced(), 0);
223 Status.OK, HandshakeStatus.NEED_WRAP, result1.bytesProduced(), 0);
237 Status.OK, HandshakeStatus.NEED_UNWRAP, result2.bytesProduced(), 0);
250 Status.OK, HandshakeStatus.FINISHED, result2.bytesProduced(),
[all...]
H A DLargeBufs.java139 if ((result1.bytesProduced() != 0) &&
140 (result1.bytesProduced() != appBufferMax) &&
141 (result1.bytesProduced() != 2 * OFFSET)) {
145 if ((result2.bytesProduced() != 0) &&
146 (result2.bytesProduced() != appBufferMax) &&
147 (result2.bytesProduced() != OFFSET)) {
H A DSSLEngineService.java109 if (res.bytesProduced() >= Short.MAX_VALUE) {
111 res.bytesProduced() + " bytes large packet ");
167 if (received < 0 && res.bytesProduced() < 4 ) {
181 received -= res.bytesProduced();
H A DConnectionTest.java157 if ((produced != -1) && (produced != result.bytesProduced())) {
159 " got = " + result.bytesProduced());
335 net1Len = result1.bytesProduced();
336 net2Len = result2.bytesProduced();
555 net1Len = result1.bytesProduced();
556 net2Len = result2.bytesProduced();
H A DNoAuthClientAuth.java383 "\t\"bytesConsumed() / bytesProduced()\"\n");
388 result.bytesConsumed() + "/" + result.bytesProduced() +
H A DTestAllSuites.java240 (result.bytesProduced() != 0)) {
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DRehandshakeFinished.java213 int bp = result.bytesProduced();
506 "\t\"bytesConsumed() / bytesProduced()\"\n");
511 result.bytesConsumed() + "/" + result.bytesProduced() +
H A DSSLEngineBadBufferArrayAccess.java462 + "\t\"bytesConsumed() / bytesProduced()\"\n");
467 + result.bytesConsumed() + "/" + result.bytesProduced()
H A DSSLEngineDeadlock.java396 "\t\"bytesConsumed() / bytesProduced()\"\n");
401 result.bytesConsumed() + "/" + result.bytesProduced() +
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DSSLStreams.java296 if (r.result.bytesProduced() > 0) {
299 assert l == r.result.bytesProduced();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/EngineArgs/
H A DDebugReportsOneExtraByte.java384 "\t\"bytesConsumed() / bytesProduced()\"\n");
389 result.bytesConsumed() + "/" + result.bytesProduced() +
/openjdk7/jdk/test/sun/security/ssl/templates/
H A DSSLEngineTemplate.java365 "\t\"bytesConsumed() / bytesProduced()\"\n");
370 result.bytesConsumed() + "/" + result.bytesProduced() +
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java670 available = result.bytesProduced();
762 int newLen = ret.bytesProduced();

Completed in 49 milliseconds