Searched defs:wrap (Results 26 - 48 of 48) sorted by relevance

12

/openjdk7/jdk/src/solaris/native/sun/security/jgss/wrapper/
H A DNativeFunc.h253 WRAP_FN_PTR wrap; member in struct:GSS_FUNCTION_TABLE
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.h104 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ member in struct:inflate_state
H A Ddeflate.c252 int wrap = 1; local
280 wrap = 0;
285 wrap = 2; /* write gzip wrapper instead */
300 s->wrap = wrap;
350 strm->state->wrap == 2 ||
351 (strm->state->wrap == 1 && strm->state->status != INIT_STATE))
355 if (s->wrap)
399 if (s->wrap < 0) {
400 s->wrap
[all...]
H A Ddeflate.h125 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ member in struct:internal_state
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java223 // wrap this object with BasicFileAttributes object to prevent leaking of
226 return UnixAsBasicFileAttributes.wrap(this);
240 // wrap a UnixFileAttributes object as a BasicFileAttributes
248 static UnixAsBasicFileAttributes wrap(UnixFileAttributes attrs) { method in class:UnixFileAttributes.UnixAsBasicFileAttributes
/openjdk7/langtools/test/tools/javac/diags/
H A DFileManager.java69 protected JavaFileObject wrap(JavaFileObject fo) { method in class:FileManager
97 /* This method is regrettably necessary because WrappingJavaFileManager.wrap takes
105 mapped.add(wrap(fileObject));
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSContextSpi.java74 * is especially important for tokens generated by wrap() which are
78 * It is anticipated that most applications will want to use wrap() in a
79 * fashion where they obtain the application bytes to wrap from a byte[]
80 * but want to output the wrap token straight to an
84 * do not contain overloaded forms of wrap() and unwrap() that do just
245 * provided to the wrap() method in order to guarantee that these
263 public void wrap(InputStream is, OutputStream os, MessageProp msgProp) method in interface:GSSContextSpi
269 public byte[] wrap(byte inBuf[], int offset, int len, method in interface:GSSContextSpi
279 public int wrap(byte inBuf[], int inOffset, int len,
296 public void wrap(byt
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSLibStub.java93 native byte[] wrap(long pContext, byte[] msg, MessageProp prop); method in class:GSSLibStub
H A DNativeGSSContext.java367 public byte[] wrap(byte[] inBuf, int offset, int len, method in class:NativeGSSContext
374 return cStub.wrap(pContext, data, msgProp);
376 public void wrap(byte inBuf[], int offset, int len, method in class:NativeGSSContext
380 byte[] result = wrap(inBuf, offset, len, msgProp);
386 public int wrap(byte[] inBuf, int inOffset, int len, byte[] outBuf, method in class:NativeGSSContext
389 byte[] result = wrap(inBuf, inOffset, len, msgProp);
393 public void wrap(InputStream inStream, OutputStream outStream, method in class:NativeGSSContext
398 byte[] token = wrap(data, 0, length, msgProp);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java337 wrap(years),
338 wrap(months),
339 wrap(days),
340 wrap(hours),
341 wrap(minutes),
352 protected static BigInteger wrap(final int i) { method in class:DurationImpl
1457 wrap(Math.abs(days)),
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java2401 * wrap the key with this cipher (e.g., a hardware protected key is
2404 public final byte[] wrap(Key key) method in class:Cipher
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java276 private DirectoryStream<Path> wrap(final DirectoryStream<Path> stream) { method in class:PassThroughFileSystem.PassThroughProvider
307 return wrap(Files.newDirectoryStream(dir, filter));
366 private Path wrap(Path path) { method in class:PassThroughFileSystem.PassThroughPath
382 return wrap(delegate.getRoot());
387 return wrap(delegate.getParent());
397 return wrap(delegate.getFileName());
402 return wrap(delegate.getName(index));
407 return wrap(delegate.subpath(beginIndex, endIndex));
432 return wrap(delegate.normalize());
437 return wrap(delegat
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java112 public JavaFileManager wrap(JavaFileManager fm) { method in class:ClientCodeWrapper
118 public FileObject wrap(FileObject fo) { method in class:ClientCodeWrapper
131 public JavaFileObject wrap(JavaFileObject fo) { method in class:ClientCodeWrapper
140 wrapped.add(wrap(fo));
151 <T /*super JavaFileOject*/> DiagnosticListener<T> wrap(DiagnosticListener<T> dl) { method in class:ClientCodeWrapper
157 TaskListener wrap(TaskListener tl) { method in class:ClientCodeWrapper
277 return wrap(clientJavaFileManager.getJavaFileForInput(location, className, kind));
290 return wrap(clientJavaFileManager.getJavaFileForOutput(location, className, kind, unwrap(sibling)));
303 return wrap(clientJavaFileManager.getFileForInput(location, packageName, relativeName));
316 return wrap(clientJavaFileManage
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSContextImpl.java76 * application can also start using the per-message methods of wrap and
382 public byte[] wrap(byte inBuf[], int offset, int len, method in class:GSSContextImpl
385 return mechCtxt.wrap(inBuf, offset, len, msgProp);
391 public void wrap(InputStream inStream, OutputStream outStream, method in class:GSSContextImpl
394 mechCtxt.wrap(inStream, outStream, msgProp);
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java981 * Requests that sequence checking be done on the GSS wrap and MIC
998 * Requests that replay detection be done on the GSS wrap and MIC
1007 * Is replay detection enabled on the GSS wrap and MIC tokens?
1087 public final byte[] wrap(byte inBuf[], int offset, int len, method in class:SpNegoContext
1090 return mechContext.wrap(inBuf, offset, len, msgProp);
1097 public final void wrap(InputStream is, OutputStream os, method in class:SpNegoContext
1100 mechContext.wrap(is, os, msgProp);
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java432 // public static <T> T wrap(Object x, Class<T> type) {
488 T result = (T) wrap(x); // unchecked warning is expected here
522 public Object wrap(Object x) { method in class:Wrapper
548 public Object wrap(int x) { method in class:Wrapper
551 case 'L': throw newIllegalArgumentException("cannot wrap to object type");
H A DValueConversions.java122 private static MethodType unboxType(Wrapper wrap) { argument
123 return MethodType.methodType(wrap.primitiveType(), Object.class, boolean.class);
129 private static MethodHandle unbox(Wrapper wrap, boolean cast) { argument
131 MethodHandle mh = cache.get(wrap);
136 switch (wrap) {
143 cache.put(wrap, mh);
147 String name = "unbox" + wrap.wrapperSimpleName();
148 MethodType type = unboxType(wrap);
156 cache.put(wrap, mh);
159 throw new IllegalArgumentException("cannot find unbox adapter for " + wrap
184 primitiveConversion(Wrapper wrap, Object x, boolean cast) argument
263 boxType(Wrapper wrap) argument
272 box(Wrapper wrap, boolean exact) argument
354 zeroConstantFunction(Wrapper wrap) argument
584 identity(Wrapper wrap) argument
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java322 return wrap(super.list(location, packageName, kinds, recurse));
352 return wrap(super.getJavaFileForInput(location, className, kind));
358 return wrap(super.getJavaFileForOutput(location, className, kind, sibling));
364 return wrap(super.getFileForInput(location, packageName, relativeName));
370 return wrap(super.getFileForOutput(location, packageName, relativeName, sibling));
391 public FileObject wrap(FileObject fo) { method in class:TestClientCodeWrapper.UserFileManager
404 public JavaFileObject wrap(JavaFileObject fo) { method in class:TestClientCodeWrapper.UserFileManager
410 public Iterable<JavaFileObject> wrap(Iterable<? extends JavaFileObject> list) { method in class:TestClientCodeWrapper.UserFileManager
413 wrapped.add(wrap(fo));
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java543 * The expression {@code type.wrap().erase()} produces the same value
556 * The expression {@code type.wrap().erase()} produces the same value
560 public MethodType wrap() { method in class:MethodType
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java197 * Unwrap the incoming message using the wrap method of the secCtx object
223 * Wrap outgoing bytes using the wrap method of the secCtx object
234 public byte[] wrap(byte[] outgoing, int start, int len) throws SaslException { method in class:DigestMD5Base
245 return (secCtx.wrap(outgoing, start, len));
934 public byte[] wrap(byte[] outgoing, int start, int len) method in class:DigestMD5Base.DigestIntegrity
953 traceOutput(DI_CLASS_NAME, "wrap", "DIGEST14:outgoing: ",
955 traceOutput(DI_CLASS_NAME, "wrap", "DIGEST15:seqNum: ",
957 traceOutput(DI_CLASS_NAME, "wrap", "DIGEST16:MAC: ", mac);
969 traceOutput(DI_CLASS_NAME, "wrap", "DIGEST17:wrapped: ", wrapped);
1310 public byte[] wrap(byt method in class:DigestMD5Base.DigestPrivacy
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5Context.java275 * Requests that replay detection be done on the GSS wrap and MIC
284 * Is replay detection enabled on the GSS wrap and MIC tokens?
292 * Requests that sequence checking be done on the GSS wrap and MIC
817 * provided to the wrap() method in order to guarantee that these
837 * synchronization is at a finer granularity because wrap and getMIC
842 public final byte[] wrap(byte inBuf[], int offset, int len, method in class:Krb5Context
845 System.out.println("Krb5Context.wrap: data=["
866 System.out.println("Krb5Context.wrap: token=["
880 public final int wrap(byte inBuf[], int inOffset, int len, method in class:Krb5Context
900 System.out.println("Krb5Context.wrap
914 public final void wrap(byte inBuf[], int offset, int len, method in class:Krb5Context
953 public final void wrap(InputStream is, OutputStream os, method in class:Krb5Context
[all...]
/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
55 * example, thread1 and thread2 both call wrap, thread1 gets the first
78 * wrap() to be called to give that data a ride.
105 * to wrap() in the proper order.
180 * wrap/unwrap until we finish sending/receiving the messages
1124 // write/wrap side
1132 public SSLEngineResult wrap(ByteBuffer [] appData, method in class:SSLEngineImpl
1197 * without trying to wrap anything.
1346 * may not exceed 2^64-1. Sequence numbers do not wrap
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java82 void wrap(String tag, String text) { method in class:HTMLGenerator.Formatter
83 wrap(tag, tag, text);
85 void wrap(String before, String after, String text) { method in class:HTMLGenerator.Formatter
92 void h1(String s) { nl(); wrap("h1", s); nl(); }
93 void h2(String s) { nl(); wrap("h2", s); nl(); }
94 void h3(String s) { nl(); wrap("h3", s); nl(); }
95 void h4(String s) { nl(); wrap("h4", s); nl(); }
102 void li(String s) { wrap("li", s); nl(); }
108 void cell(String s) { wrap("td", s); }
109 void headerCell(String s) { wrap("t
[all...]

Completed in 136 milliseconds

12