Searched refs:full (Results 26 - 39 of 39) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DClassDocImpl.java389 * Return the class name as a string. If "full" is true the name is
392 static String getClassName(ClassSymbol c, boolean full) { argument
393 if (full) {
407 * If "full" is true all names are qualified, otherwise they are
410 static String classToString(DocEnv env, ClassSymbol c, boolean full) { argument
413 s.append(getClassName(c, full));
417 s.append(classToString(env, encl, full))
421 s.append(TypeMaker.typeParametersString(env, c, full));
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp533 void DefNewGeneration::collect(bool full, argument
537 assert(full || size > 0, "otherwise we don't want to collect");
549 // If the next generation is too full to accommodate promotion
640 // for full GC's.
881 void DefNewGeneration::gc_epilogue(bool full) { argument
885 // Check if the heap is approaching full after a collection has
888 // the heap is approaching full.
890 if (full) {
894 gclog_or_tty->print("DefNewEpilogue: cause(%s), full, not safe, set_failed, set_alloc_from, clear_seen",
897 gch->set_incremental_collection_failed(); // Slight lie: a full g
1046 gc_prologue(bool full) argument
[all...]
H A Dgeneration.cpp466 void OneContigSpaceCardGeneration::collect(bool full, argument
700 void OneContigSpaceCardGeneration::gc_epilogue(bool full) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTask.java550 private void showVersion(boolean full) { argument
551 log.println(version(full));
557 private String version(boolean full) { argument
558 String msgKey = (full ? "javah.fullVersion" : "javah.version");
559 String versionKey = (full ? "full" : "release");
561 // versionKey=full: mm.mm.oo[-milestone]-build
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp449 "before full %3.7f + %3.7f > %3.7f ", cms_duration(),
1417 // to delay the transition from uninitialized to full object
1468 bool ConcurrentMarkSweepGeneration::should_collect(bool full,
1472 // We allow a STW collection only if a full
1474 return full || should_allocate(size, tlab); // FIX ME !!!
1526 // is full, start a collection.
1594 // extreme. To collect too rarely falls back on full collections,
1645 void ConcurrentMarkSweepGeneration::collect(bool full,
1650 collector()->collect(full, clear_all_soft_refs, size, tlab);
1653 void CMSCollector::collect(bool full,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java397 void printUsage(boolean doPack, boolean full, PrintStream out) { argument
404 if (!full) {
/openjdk7/hotspot/make/windows/
H A Dbuild.bat113 echo bootstrap_dir is a full path to a JDK in which bin/java
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp385 virtual void collect(bool full,
H A DparNewGeneration.cpp131 // Test above combines last partial chunk with a full chunk
918 void ParNewGeneration::collect(bool full, argument
922 assert(full || size > 0, "otherwise we don't want to collect");
948 // If the next generation is too full to accommodate worst-case promotion
1053 // for full GC's.
1195 // Either to-space is full or we decided to promote
1312 // Either to-space is full or we decided to promote
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparMarkBitMap.hpp41 enum IterationStatus { incomplete, complete, full, would_overflow }; enumerator in enum:ParMarkBitMap::IterationStatus
95 // were processed and the closure is not full;
98 // full The closure is full; closure->source() is set to one
H A DpsParallelCompact.cpp311 // Print (and count) the full regions at the beginning of the space.
550 // Update live_obj_size so the region appears completely full.
1126 // Skip full regions at the beginning of the space--they are necessarily part
1394 // Completely full regions at the left are skipped, since no compaction can
1398 // identified as the limit region. Regions between the last completely full
1426 // Skip full regions at the beginning of the space--they are necessarily part
1997 // This method should contain all heap-specific policy for invoking a full
2000 // before full gc, or any other specialized behavior, it needs to be added here.
2007 // activity. For example when the heap space is tight and full measure
2186 true /* full g
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.hpp317 // Typically, it is not full so we should re-use it during the next GC.
645 // Perform a full collection.
648 // Resize the heap if necessary after a full collection. If this is
686 virtual void gc_prologue(bool full);
687 virtual void gc_epilogue(bool full);
741 // the FullGCCount_lock in case a Java thread is waiting for a full
974 // discovery and processing during full GCs and incremental
994 // At the start of full GC we:
1006 // references during the full GC.
1008 // At the end of a full G
[all...]
H A Dg1CollectedHeap.cpp1173 // Re: the performance cost: we shouldn't be doing full GC anyway!
1338 increment_total_collections(true /* full gc */);
1368 _hr_printer.start_gc(true /* full */, (size_t) total_collections());
1373 // after this full GC.
1416 // Note: since we've just done a full GC, concurrent
1439 _hr_printer.end_gc(true /* full */, (size_t) total_collections());
1486 // Ask the permanent generation to adjust size for full collections
1506 // Update the number of full collections that have been completed.
1676 // do something smarter than full collection to satisfy a failed alloc.)
2204 // Here we allocate the dummy full regio
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DJavapTask.java894 private void showVersion(boolean full) { argument
895 log.println(version(full ? "full" : "release"));
903 // key=full: mm.mm.oo[-milestone]-build

Completed in 96 milliseconds

12