Searched defs:unwrap (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/sql/
H A DWrapper.java52 * the result of calling <code>unwrap</code> recursively on the wrapped object
61 <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException; method in interface:Wrapper
68 * This method should be implemented as a low-cost operation compared to <code>unwrap</code> so that
69 * callers can use this method to avoid expensive <code>unwrap</code> calls that may fail. If this method
70 * returns true then calling <code>unwrap</code> with the same argument should succeed.
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DSecurityCtx.java55 byte[] unwrap(byte[] outgoing, int start, int len) method in interface:SecurityCtx
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslClient.java71 * // Use SaslClient.wrap() and SaslClient.unwrap() for future
172 public abstract byte[] unwrap(byte[] incoming, int offset, int len) method in interface:SaslClient
H A DSaslServer.java72 * // Use SaslServer.wrap() and SaslServer.unwrap() for future
165 public abstract byte[] unwrap(byte[] incoming, int offset, int len) method in interface:SaslServer
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJPrimitiveType.java114 public JExpression unwrap( JExpression exp ) { method in class:JPrimitiveType
115 // it just so happens that the unwrap method is always
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Base.java76 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:CramMD5Base
H A DExternalClient.java116 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:ExternalClient
H A DPlainClient.java146 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:PlainClient
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java65 public byte[] unwrap(byte[] incoming, int start, int len) method in class:GssKrb5Base
78 byte[] answer = secCtx.unwrap(incoming, start, len, msgProp);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DWrappingJavaFileManager.java93 protected FileObject unwrap(FileObject fileObject) { method in class:WrappingJavaFileManager
98 * This implementation forwards to {@link #unwrap(FileObject)}.
105 protected JavaFileObject unwrap(JavaFileObject fileObject) { method in class:WrappingJavaFileManager
106 return (JavaFileObject)unwrap((FileObject)fileObject);
129 protected URI unwrap(URI uri) { method in class:WrappingJavaFileManager
149 return super.inferBinaryName(location, unwrap(file));
176 return wrap(super.getJavaFileForOutput(location, className, kind, unwrap(sibling)));
204 unwrap(sibling)));
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java184 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:NTLMClient
H A DNTLMServer.java203 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:NTLMServer
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPBECipherCore.java524 Key unwrap(byte[] wrappedKey, method in class:PBECipherCore
H A DCipherCore.java927 Key unwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, method in class:CipherCore
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSService.java206 public static WSService unwrap(final Service svc) { method in class:WSService
/openjdk7/jdk/test/sun/security/ssl/sanity/pluggability/
H A DMySSLEngineImpl.java50 public SSLEngineResult unwrap(ByteBuffer src, method in class:MySSLEngineImpl
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DContext.java72 * actions (wrap, unwrap, getMic and veryfyMiC):
396 public byte[] unwrap(byte[] t, final boolean privacy) method in class:Context
401 System.out.printf("unwrap %s privacy from %s: ", privacy?"with":"without", me.name);
406 me.x.unwrap(new ByteArrayInputStream(input), os, p1);
409 bytes = me.x.unwrap(input, 0, input.length, p1);
474 byte[] unwrapped = s2.unwrap(wrapped, true);
476 throw new Exception("wrap/unwrap mismatch");
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLEngine.java101 * wrap() | | | unwrap()
168 * <code>wrap()</code>, <code>unwrap()</code>, or
173 * ByteBuffer) wrap()} or {@link #unwrap(ByteBuffer, ByteBuffer)
174 * unwrap()} on outbound or inbound data, respectively. Depending on
179 * <code>unwrap()</code> will examine the source buffer and may
185 * Calls to <code>wrap()</code> and <code>unwrap()</code> return an
192 * calls to <code>wrap()/unwrap()</code>. Thus input and output
203 * For example, <code>unwrap()</code> will return a {@link
208 * enlarging the buffer if necessary. Similarly, if <code>unwrap()</code>
215 * SSLEngineResult r = engine.unwrap(sr
622 public SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
659 public SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
747 public abstract SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSContext.java654 public byte [] unwrap(byte[] inBuf, int offset, int len, method in interface:GSSContext
682 * method is equivalent to the byte array based {@link #unwrap(byte[],
683 * int, int, MessageProp) unwrap} method.<p>
701 public void unwrap(InputStream inStream, OutputStream outStream, method in interface:GSSContext
946 * in to the <code>unwrap</code> method or the <code>verifyMIC</code>
978 * in to the <code>unwrap</code> method or the <code>verifyMIC</code>
1225 * @return true if methods like <code>wrap</code>, <code>unwrap</code>,
/openjdk7/jdk/src/solaris/native/sun/security/jgss/wrapper/
H A DNativeFunc.h254 UNWRAP_FN_PTR unwrap; member in struct:GSS_FUNCTION_TABLE
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java229 // unwrap BasicFileAttributes to get the underlying UnixFileAttributes
235 return ((UnixAsBasicFileAttributes)attrs).unwrap();
252 UnixFileAttributes unwrap() { method in class:UnixFileAttributes.UnixAsBasicFileAttributes
/openjdk7/langtools/test/tools/javac/TryWithResources/
H A DUnusedResourcesTest.java240 String varName = unwrap(diagnostic).getArgs()[0].toString();
251 private JCDiagnostic unwrap(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:UnusedResourcesTest.DiagnosticChecker
/openjdk7/langtools/test/tools/javac/diags/
H A DExample.java401 scanForKeys(unwrap(d), keys);
423 private JCDiagnostic unwrap(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:Example.Jsr199Compiler
H A DFileManager.java74 protected JavaFileObject unwrap(JavaFileObject fo) { method in class:FileManager
/openjdk7/langtools/test/tools/javac/processing/errors/
H A DTestSuppression.java175 + "resolveError:" + isResolveError(unwrap(diagnostic)) + "\n"
186 private JCDiagnostic unwrap(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:TestSuppression.DiagListener

Completed in 55 milliseconds

12