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

  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 69 assertSame(name, cs, CipherSuite.getByCode(bytes[0], bytes[1]));
70 assertSame(name, cs, CipherSuite.getByCode((byte) 0, bytes[0], bytes[1]));
105 // CipherSuite.getByCode is also covered by test_CipherSuite
106 assertUnknown(CipherSuite.getByCode((byte) 0x12, (byte) 0x34));
107 assertUnknown(CipherSuite.getByCode((byte) 0x12, (byte) 0x34, (byte) 0x56));
108 assertUnknown(CipherSuite.getByCode((byte) -1, (byte) -1));
109 assertUnknown(CipherSuite.getByCode((byte) -1, (byte) -1, (byte) -1));
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHello.java 106 cipher_suites[i] = CipherSuite.getByCode(b0, b1);
152 cipher_suites[i] = CipherSuite.getByCode(b0, b1, b2);
ServerHello.java 96 cipher_suite = CipherSuite.getByCode(b0, b1);
CipherSuite.java     [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 60 * Class under test for CipherSuite getByCode(byte, byte)
67 CipherSuite.getByCode(code[0], code[1]));
71 10, 10 }), CipherSuite.getByCode((byte) 10, (byte) 10));
75 * Class under test for CipherSuite getByCode(byte, byte, byte)
82 CipherSuite.getByCode((byte) 0, (byte) 0, code[1]));
87 CipherSuite.getByCode((byte) 10, (byte) 10, (byte) 10));

Completed in 315 milliseconds