HomeSort by relevance Sort by last modified time
    Searched refs:unwrap (Results 1 - 25 of 41) 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/src/
WebInputElement.cpp 86 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
91 unwrap<HTMLInputElement>()->setValue(value);
101 unwrap<HTMLInputElement>()->setAutofilled(autoFilled);
106 unwrap<HTMLInputElement>()->dispatchFormControlChangeEvent();
111 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
WebFormElement.cpp 87 unwrap<HTMLFormElement>()->submit();
94 unwrap<HTMLFormElement>()->getNamedElements(name, tempVector);
WebDocument.cpp 98 return WebElement(unwrap<Document>()->head());
103 return WebNodeCollection(unwrap<Document>()->all());
WebElement.cpp 81 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
  /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/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...]
  /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
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherWrapThread.java 42 Key decrypted = cip.unwrap(output, getAlgName(), Cipher.SECRET_KEY);
  /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/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/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);
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();
SSLSocketImpl.java 605 // read and unwrap the record contained in the transport
609 switch (type = recordProtocol.unwrap()) {
638 // warning alert occured during wrap or unwrap
706 * message from another peer. Each of this stages (wrap/unwrap) change
733 // read and unwrap the record contained in the transport
737 switch (type = recordProtocol.unwrap()) {
769 // warning alert uccured during wrap or unwrap
HandshakeProtocol.java 254 public abstract void unwrap(byte[] bytes); method in class:HandshakeProtocol
  /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
  /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/libcore/javax/net/ssl/
TestSSLEnginePair.java 146 SSLEngineResult unwrapResult = engine.unwrap(input, scratch);
  /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
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
WrapCipherSpi.java 335 encoded = wrapEngine.unwrap(wrappedKey, 0, wrappedKey.length);

Completed in 667 milliseconds

1 2