Searched defs:unpack (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DUnpackerImpl.java81 * Get the set of options for the pack and unpack engines.
99 // The unpack worker...
110 public synchronized void unpack(InputStream in, JarOutputStream out) throws IOException { method in class:UnpackerImpl
155 public synchronized void unpack(File in, JarOutputStream out) throws IOException { method in class:UnpackerImpl
165 unpack(instr, out);
225 if (props.getBoolean("unpack.strip.debug")) pkg.stripAttributeKind("Debug");
226 if (props.getBoolean("unpack.strip.compile")) pkg.stripAttributeKind("Compile");
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DPack200.java87 * unpacker.unpack(f, jostream);
197 * and to pack a JAR, you must first pack and unpack the JAR to
534 * <tt>unpack.</tt> are reserved for use by this API.
635 String DEFLATE_HINT = "unpack.deflate.hint";
650 String PROGRESS = "unpack.progress";
668 * <tt>unpack.</tt> are reserved for use by this API.
691 void unpack(InputStream in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
702 void unpack(File in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java205 private static char unpack(long packed, int word) { // word==0 => return a, ==3 => return d method in class:MethodTypeForm
211 return unpack(argCounts, 3);
214 return unpack(argCounts, 2);
217 return unpack(argCounts, 1);
220 return unpack(argCounts, 0);
223 return unpack(primCounts, 3);
226 return unpack(primCounts, 2);
229 return unpack(primCounts, 1);
232 return unpack(primCounts, 0);
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.hpp387 address unpack_pc = unpack();
400 address unpack() const { return code_begin() + _unpack_offset; } function in class:DeoptimizationBlob

Completed in 35 milliseconds