HomeSort by relevance Sort by last modified time
    Searched defs:unwrap (Results 1 - 25 of 32) sorted by null

1 2

  /libcore/luni/src/main/java/java/sql/
Wrapper.java 39 <T> T unwrap(Class<T> iface) throws SQLException; method in interface:Wrapper
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
Wrapper.java 16 public byte[] unwrap(byte[] in, int inOff, int inLen) method in interface:Wrapper
  /external/webkit/WebKit/chromium/public/
WebEvent.h 103 template<typename T> T* unwrap() function in class:WebKit::WebEvent
WebNode.h 127 template<typename T> T* unwrap() function in class:WebKit::WebNode
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 118 public byte[] unwrap( method in class:RFC3394WrapEngine
133 throw new InvalidCipherTextException("unwrap data must be a multiple of 8 bytes");
DESedeWrapEngine.java 200 * Method unwrap
208 public byte[] unwrap(byte[] in, int inOff, int inLen) method in class:DESedeWrapEngine
  /external/guava/src/com/google/common/primitives/
Primitives.java 108 * unwrap(Integer.class) == int.class
109 * unwrap(int.class) == int.class
110 * unwrap(String.class) == String.class
113 public static <T> Class<T> unwrap(Class<T> type) { method in class:Primitives
  /libcore/luni/src/main/java/javax/net/ssl/
SSLEngine.java 80 * called by {@code wrap} or {@code unwrap} if the initial handshake has not
327 public abstract SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
384 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer dst) throws SSLException { method in class:SSLEngine
385 return unwrap(src, new ByteBuffer[] { dst }, 0, 1);
409 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException { method in class:SSLEngine
413 return unwrap(src, dsts, 0, dsts.length);
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 215 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCResultSetMetaData
JDBCStatement.java 317 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCStatement
JDBCConnection.java 511 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCConnection
JDBCDatabaseMetaData.java 1680 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCDatabaseMetaData
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 1293 public final Key unwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, method in class:Cipher
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLRecordProtocol.java 328 protected int unwrap() throws IOException { method in class:SSLRecordProtocol
330 logger.println("SSLRecordProtocol.unwrap: BEGIN [");
347 "SSLRecordProtocol:unwrap ] END, SSLv2 type");
409 handshakeProtocol.unwrap(fragment);
414 "TLSCiphertext.unwrap: APP DATA["+length+"]:");
426 logger.println("SSLRecordProtocol:unwrap ] END, type: " + type);
ClientHandshakeImpl.java 154 public void unwrap(byte[] bytes) { method in class:ClientHandshakeImpl
ServerHandshakeImpl.java 95 public void unwrap(byte[] bytes) { method in class:ServerHandshakeImpl
HandshakeProtocol.java 254 public abstract void unwrap(byte[] bytes); method in class:HandshakeProtocol
SSLEngineImpl.java 405 * @see javax.net.ssl.SSLEngine#unwrap(ByteBuffer,ByteBuffer[],int,int)
409 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:SSLEngineImpl
462 // unwrap the record contained in source buffer, pass it
465 int type = recordProtocol.unwrap();
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 192 public <T> T unwrap(Class<T> iface) throws SQLException { method in class:TestHelper_Connection1
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySSLContextSpi.java 148 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:MySSLContextSpi.tmpSSLEngine
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:MySSLContextSpi.tmpSSLEngine
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 539 * @tests javax.net.ssl.SSLEngine#unwrap(ByteBuffer src, ByteBuffer[] dsts,
546 method = "unwrap",
556 clientEngine.engine.unwrap(bbs, new ByteBuffer[] { bbd }, 0, 1);
564 * @tests javax.net.ssl.SSLEngine#unwrap(ByteBuffer src, ByteBuffer[] dsts,
571 method = "unwrap",
585 sse.unwrap(bb, bbA, -1, 3);
591 sse.unwrap(bb, bbA, 0, -3);
597 sse.unwrap(bb, bbA, bbA.length + 1, bbA.length);
603 sse.unwrap(bb, bbA, 0, bbA.length + 1);
611 * @tests javax.net.ssl.SSLEngine#unwrap(ByteBuffer src, ByteBuffer[] dsts
1033 SSLEngineResult unwrap = clientEngine.engine.unwrap(bbs, bbd); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 770 public <T> T unwrap(Class<T> iface) throws SQLException { method in class:Impl_RowSet
  /build/tools/droiddoc/src/
DroidDoc.java 1197 private static Object unwrap(Object proxy) { method in class:DroidDoc.HideHandler
    [all...]

Completed in 2512 milliseconds

1 2