Searched refs:keep (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/test/pack200/
H A Dpack.conf29 pack.keep.class.order=true
/openjdk7/jdk/test/sun/rmi/rmic/defaultStubVersion/
H A Drun.sh49 ${TESTJAVA}/bin/rmic -classpath ${TESTCLASSES:-.} -keep -nowrite -d $defdir G1Impl
50 ${TESTJAVA}/bin/rmic -classpath ${TESTCLASSES:-.} -keep -nowrite -d $refdir -v1.2 G1Impl
/openjdk7/jdk/make/tools/reorder/tools/
H A DCombine.java37 private static void appendFile(String fileName, boolean keep) { argument
50 if (keep || !map.containsKey(line)) {
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A Dbatch.sh64 ${TESTJAVA}/bin/rmic -keep -nowrite -v1.1 -d $refv11dir -classpath "$@"
65 ${TESTJAVA}/bin/rmic -keep -nowrite -vcompat -d $refvcompatdir -classpath "$@"
66 ${TESTJAVA}/bin/rmic -keep -v1.2 -d $refv12dir -classpath "$@"
68 ${TESTJAVA}/bin/rmic -Xnew -nowrite -keep -v1.1 -d $newv11dir -classpath "$@"
69 ${TESTJAVA}/bin/rmic -Xnew -nowrite -keep -vcompat -d $newvcompatdir -classpath "$@"
70 ${TESTJAVA}/bin/rmic -Xnew -keep -v1.2 -d $newv12dir -classpath "$@"
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVMState.java150 boolean keep = true;
153 keep = listener.vmSuspended(action);
156 keep = listener.vmNotSuspended(action);
159 if (!keep) {
/openjdk7/jdk/test/java/lang/instrument/appendToClassLoaderSearch/
H A DCircularityErrorTest.sh42 # This yields us A.jar (containing A.class) and B.keep (class file)
50 rm -f A.class; mv B.class B.keep)
60 # Move B.keep to B.class creates the A extends B and
62 (cd "${TESTCLASSES}"; mv B.keep B.class)
/openjdk7/jdk/test/java/lang/ref/
H A DBasic.java39 static Vector keep = new Vector(); field in class:Basic
77 keep.addElement(new PhantomReference(new Object(), q2));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DOptions.java57 * -keep
59 public boolean keep; field in class:Options
292 } else if (args[i].equals("-keep")) {
293 keep = true;
308 keep = true;
321 // -nocompile implies -keep. this is undocumented switch.
323 keep = true;
H A DWsimportTool.java278 if(!options.keep) {
H A DWsgenTool.java126 if(!options.keep){
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTarget.java84 * collection. Permanent objects do not keep a server from
291 } else if (entry.keep == false) {
419 * The "keep-alive count" is the number of non-permanent remote
422 * keep-alive count: if this target is for a non-permanent remote
457 boolean keep; field in class:SequenceEntry
461 keep = false;
466 keep = true;
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java583 int highMask = (highBit << 1) - 1; // Bits to keep in high int
1647 * The idea is to keep a running product of b1 = n^(high-order bits of exp)
1648 * and then keep appending exponent bits to it. The following patterns
2807 int keep;
2810 for (keep = 0; keep < vlen && val[keep] == 0; keep++)
2812 return java.util.Arrays.copyOfRange(val, keep, vlen);
2821 int keep;
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpClient.java101 volatile boolean keepingAlive = false; /* this is a keep-alive connection */
102 int keepAliveConnections = -1; /* number of keep-alives left */
107 * through a Netscape proxy to a server that sent me a keep-alive
166 * @return true iff http keep alive is set (i.e. enabled). Defaults
188 * HTTP URL's that use this won't take advantage of keep-alive.
403 assert false : "Duplicate put to keep alive cache";
693 String keep=null;
718 * protocol should fall back onto HTTP/1.0, no keep-alive.
721 keep = responses.findValue("Proxy-Connection");
723 if (keep
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwrite.c51 * the chunk, as that will keep the code from breaking if you want to just
127 int keep = png_handle_as_unknown(png_ptr, up->name); local
129 if (keep != PNG_HANDLE_CHUNK_NEVER &&
134 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
304 int keep = png_handle_as_unknown(png_ptr, up->name); local
305 if (keep != PNG_HANDLE_CHUNK_NEVER &&
310 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
413 int keep = png_handle_as_unknown(png_ptr, up->name); local
414 if (keep != PNG_HANDLE_CHUNK_NEVER &&
417 ((up->name[3] & 0x20) || keep
[all...]
H A Dpngset.c1081 png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_const_bytep argument
1091 if (keep == PNG_HANDLE_CHUNK_ALWAYS || keep == PNG_HANDLE_CHUNK_IF_SAFE)
1097 if (keep == PNG_HANDLE_CHUNK_ALWAYS)
1125 *p=(png_byte)keep;
H A Dpng.h1632 * Weights are factors >= 1.0, indicating how important it is to keep the
2313 keep = 0: follow default behaviour
2314 = 1: do not keep
2315 = 2: keep only if safe-to-copy
2316 = 3: keep even if unsafe-to-copy
2319 (png_structp png_ptr, int keep,
/openjdk7/jdk/make/common/
H A DLibrary.gmk285 $(OBJCOPY) --only-keep-debug $(@F) $(LIB_PREFIX)$(LIBRARY).debuginfo ; \
291 $(OBJCOPY) --only-keep-debug $(@F) $(LIB_PREFIX)$(LIBRARY).debuginfo ; \
H A DProgram.gmk266 $(OBJCOPY) --only-keep-debug $(@F) $(@F).debuginfo ; \
272 $(OBJCOPY) --only-keep-debug $(@F) $(@F).debuginfo ; \
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Frame.cpp844 // frame, we need to keep the zoomed property TRUE. However,
1111 static BOOL keep = FALSE; local
1113 keep = (JNU_GetStaticFieldByName(AwtToolkit::GetEnv(), NULL,
1117 return keep;

Completed in 128 milliseconds