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

12

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java906 * the result of calling <code>unwrap</code> recursively on the wrapped object. If the receiver is not a
914 public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException { method in class:RowSetMetaDataImpl
919 throw new SQLException("unwrap failed for:"+ iface);
928 * This method should be implemented as a low-cost operation compared to <code>unwrap</code> so that
929 * callers can use this method to avoid expensive <code>unwrap</code> calls that may fail. If this method
930 * returns true then calling <code>unwrap</code> with the same argument should succeed.
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java724 setForeground(unwrap(table.getSelectionForeground()));
725 setBackground(unwrap(table.getSelectionBackground()));
727 setForeground(unwrap(table.getForeground()));
728 setBackground(unwrap(table.getBackground()));
735 private Color unwrap(Color c) { method in class:SynthTableUI.SynthBooleanTableCellRenderer
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSContextSpi.java81 * OutputStream. Similarly, they will want to use unwrap() where they read
84 * do not contain overloaded forms of wrap() and unwrap() that do just
261 * @see unwrap
292 * with unwrap.
312 public void unwrap(InputStream is, OutputStream os, method in interface:GSSContextSpi
318 public byte[] unwrap(byte inBuf[], int offset, int len, method in interface:GSSContextSpi
328 public int unwrap(byte inBuf[], int inOffset, int len,
342 public int unwrap(InputStream is,
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSLibStub.java94 native byte[] unwrap(long pContext, byte[] msgToken, MessageProp prop); method in class:GSSLibStub
H A DNativeGSSContext.java405 public byte[] unwrap(byte[] inBuf, int offset, int len, method in class:NativeGSSContext
411 return cStub.unwrap(pContext, temp, msgProp);
413 return cStub.unwrap(pContext, inBuf, msgProp);
416 public int unwrap(byte[] inBuf, int inOffset, int len, method in class:NativeGSSContext
423 result = cStub.unwrap(pContext, temp, msgProp);
425 result = cStub.unwrap(pContext, inBuf, msgProp);
430 public void unwrap(InputStream inStream, OutputStream outStream, method in class:NativeGSSContext
435 byte[] data = unwrap(wrapped, 0, wLength, msgProp);
443 public int unwrap(InputStream inStream, method in class:NativeGSSContext
451 byte[] result = unwrap(wrappe
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java2445 public final Key unwrap(byte[] wrappedKey, method in class:Cipher
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java57 static Path unwrap(Path wrapper) { method in class:PassThroughFileSystem
138 return matcher.matches(unwrap(path));
215 Files.setAttribute(unwrap(file), attribute, value, options);
222 return Files.readAttributes(unwrap(file), attributes, options);
230 return Files.getFileAttributeView(unwrap(file), type, options);
239 return Files.readAttributes(unwrap(file), type, options);
244 Files.delete(unwrap(file));
251 Files.createSymbolicLink(unwrap(link), unwrap(target), attrs);
256 Files.createLink(unwrap(lin
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java124 FileObject unwrap(FileObject fo) { method in class:ClientCodeWrapper
144 JavaFileObject unwrap(JavaFileObject fo) { method in class:ClientCodeWrapper
164 private <T> Diagnostic<T> unwrap(final Diagnostic<T> diagnostic) { method in class:ClientCodeWrapper
225 return clientJavaFileManager.inferBinaryName(location, unwrap(file));
238 return clientJavaFileManager.isSameFile(unwrap(a), unwrap(b));
290 return wrap(clientJavaFileManager.getJavaFileForOutput(location, className, kind, unwrap(sibling)));
316 return wrap(clientJavaFileManager.getFileForOutput(location, packageName, relativeName, unwrap(sibling)));
559 clientDiagnosticListener.report(unwrap(diagnostic));
582 return unwrap(
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSContextImpl.java400 public byte [] unwrap(byte[] inBuf, int offset, int len, method in class:GSSContextImpl
403 return mechCtxt.unwrap(inBuf, offset, len, msgProp);
409 public void unwrap(InputStream inStream, OutputStream outStream, method in class:GSSContextImpl
412 mechCtxt.unwrap(inStream, outStream, msgProp);
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java1107 public final byte[] unwrap(byte inBuf[], int offset, int len, method in class:SpNegoContext
1111 return mechContext.unwrap(inBuf, offset, len, msgProp);
1118 public final void unwrap(InputStream is, OutputStream os, method in class:SpNegoContext
1121 mechContext.unwrap(is, os, msgProp);
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java328 return super.inferBinaryName(location, unwrap(file));
334 return super.isSameFile(unwrap(a), unwrap(b));
397 FileObject unwrap(FileObject fo) { method in class:TestClientCodeWrapper.UserFileManager
399 return ((UserFileObject) fo).unwrap();
417 JavaFileObject unwrap(JavaFileObject fo) { method in class:TestClientCodeWrapper.UserFileManager
419 return ((UserFileObject) fo).unwrap();
434 JavaFileObject unwrap() { method in class:TestClientCodeWrapper.UserFileObject
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java510 return unwrap() != this;
571 public MethodType unwrap() { method in class:MethodType
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectionImpl.java369 nullIsEmpty(unwrap(params, classLoaderWithRepository, Object[].class));
431 values = nullIsEmpty(unwrap(params,
546 queryValue = unwrap(query, defaultContextClassLoader, QueryExp.class);
581 queryValue = unwrap(query, defaultContextClassLoader, QueryExp.class);
728 attr = unwrap(attribute,
779 unwrap(attributes,
831 values = nullIsEmpty(unwrap(params,
1014 unwrap(filters[i], targetCl, defaultClassLoader,
1083 unwrap(filter, targetCl, defaultClassLoader, NotificationFilter.class);
1091 unwrap(handbac
1573 private static <T> T unwrap(final MarshalledObject<?> mo, method in class:RMIConnectionImpl
1603 private static <T> T unwrap(final MarshalledObject<?> mo, method in class:RMIConnectionImpl
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java208 public byte[] unwrap(byte[] incoming, int start, int len) throws SaslException { method in class:DigestMD5Base
219 return (secCtx.unwrap(incoming, start, len));
989 public byte[] unwrap(byte[] incoming, int start, int len) method in class:DigestMD5Base.DigestIntegrity
1012 traceOutput(DI_CLASS_NAME, "unwrap", "DIGEST18:incoming: ",
1014 traceOutput(DI_CLASS_NAME, "unwrap", "DIGEST19:MAC: ",
1016 traceOutput(DI_CLASS_NAME, "unwrap", "DIGEST20:messageType: ",
1018 traceOutput(DI_CLASS_NAME, "unwrap", "DIGEST21:sequenceNum: ",
1020 traceOutput(DI_CLASS_NAME, "unwrap", "DIGEST22:expectedMAC: ",
1395 public byte[] unwrap(byte[] incoming, int start, int len) method in class:DigestMD5Base.DigestPrivacy
1418 traceOutput(DP_CLASS_NAME, "unwrap", "DIGEST3
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5Context.java838 * care about the local sequence number (mySeqNumber) where are unwrap
969 public final byte[] unwrap(byte inBuf[], int offset, int len, method in class:Krb5Context
974 System.out.println("Krb5Context.unwrap: token=["
998 System.out.println("Krb5Context.unwrap: data=["
1006 public final int unwrap(byte inBuf[], int inOffset, int len, method in class:Krb5Context
1028 public final int unwrap(InputStream is, method in class:Krb5Context
1050 public final void unwrap(InputStream is, OutputStream os, method in class:Krb5Context
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLEngineImpl.java50 * wrap(), unwrap(), and beginHandshake(). We are encouraging users to
51 * not call multiple instances of wrap or unwrap, because the data could
90 * In the case of an inbound record, unwrap passes the inbound
180 * wrap/unwrap until we finish sending/receiving the messages
743 // Read/unwrap side
751 public SSLEngineResult unwrap(ByteBuffer netData, ByteBuffer [] appData, method in class:SSLEngineImpl
779 * Makes additional checks for unwrap, but this time more
810 * can return without trying to unwrap anything.
1166 * Makes additional checks for unwrap, but this time more
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java4822 public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException{ method in class:JdbcRowSetImpl
H A DCachedRowSetImpl.java7890 public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException { method in class:CachedRowSetImpl

Completed in 238 milliseconds

12