HomeSort by relevance Sort by last modified time
    Searched refs:compression_methods (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHello.java 57 final byte[] compression_methods; field in class:ClientHello
77 compression_methods = new byte[] { 0 }; // CompressionMethod.null
79 + compression_methods.length;
109 compression_methods = new byte[size];
110 in.read(compression_methods, 0, size);
112 + compression_methods.length;
154 compression_methods = new byte[] { 0 }; // CompressionMethod.null
168 + compression_methods.length;
186 out.writeUint8(compression_methods.length);
187 for (int i = 0; i < compression_methods.length; i++)
    [all...]
ServerHandshakeImpl.java 326 for (int i = 0; i < clientHello.compression_methods.length; i++) {
327 if (clientHello.compression_methods[i] == 0) {

Completed in 111 milliseconds