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

12

/openjdk7/jdk/test/com/sun/jdi/
H A DArrayRangeTest.java304 Sample full = new Sample("full", fullAR, ArrayRangeTarg.fullArray);
307 getValueGood(full, 0);
308 getValueGood(full, 4);
311 getValueBad(full, -1);
312 getValueBad(full, -2);
317 getValueBad(full, 5);
321 getValuesGood(full);
324 getValuesGood(full, 0, 5);
325 getValuesGood(full,
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DtenuredGeneration.hpp54 // Retire all alloc buffers before a full GC, so that they will be
73 // Does a "full" (forced) collection invoked on this generation collect
85 virtual void gc_prologue(bool full);
86 virtual void gc_epilogue(bool full);
87 bool should_collect(bool full,
91 virtual void collect(bool full,
110 virtual void update_gc_stats(int level, bool full);
H A DtenuredGeneration.cpp244 void TenuredGeneration::gc_prologue(bool full) { argument
252 void TenuredGeneration::gc_epilogue(bool full) { argument
256 OneContigSpaceCardGeneration::gc_epilogue(full);
260 bool TenuredGeneration::should_collect(bool full, argument
268 if (!result && full) {
272 " full");
305 void TenuredGeneration::collect(bool full, argument
310 OneContigSpaceCardGeneration::collect(full, clear_all_soft_refs,
315 bool full) {
318 if (!full
314 update_gc_stats(int current_level, bool full) argument
[all...]
H A Dgeneration.hpp191 // Promotion of the full amount is not guaranteed but
344 // during a full collection.
361 // will be full if the flag is set).
364 virtual bool should_collect(bool full, argument
367 return (full || should_allocate(word_size, is_tlab));
381 // If full is true attempt a full garbage collection of this generation.
384 virtual void collect(bool full,
400 virtual void gc_prologue(bool full) {}; argument
404 virtual void gc_epilogue(bool full) {}; argument
440 update_gc_stats(int current_level, bool full) argument
[all...]
H A DgenCollectedHeap.hpp105 void do_collection(bool full,
118 // Perform a full collection of the first max_level+1 generations.
183 // Perform a full collection of the heap; intended for use in implementing
184 // "System.gc". This implies as full a collection as the CollectedHeap
197 // Perform a full collection of the first max_level+1 generations.
323 // Total number of full collections completed.
346 void update_gc_stats(int current_level, bool full) { argument
348 _gens[i]->update_gc_stats(current_level, full);
350 perm_gen()->update_gc_stats(current_level, full);
532 // Perform a full collectio
[all...]
H A DsharedHeap.hpp286 virtual void gc_prologue(bool full) = 0;
287 virtual void gc_epilogue(bool full) = 0;
H A DgenCollectedHeap.cpp355 // at the end of a stop-world full GC.
369 // may already have initiated a STW full collection "concurrently").
444 void GenCollectedHeap::do_collection(bool full, argument
478 bool complete = full && (max_level == (n_gens()-1));
489 if (full) {
504 if (_gens[i]->should_collect(full, size, is_tlab)) {
510 pre_full_gc_dump(NULL); // do any pre full gc dumps
585 _gens[i]->collect(full, do_clear_all_soft_refs, size, is_tlab);
608 update_gc_stats(i, full);
631 post_full_gc_dump(NULL); // do any post full g
1311 GenGCPrologueClosure(bool full) argument
1314 gc_prologue(bool full) argument
1337 GenGCEpilogueClosure(bool full) argument
1340 gc_epilogue(bool full) argument
[all...]
H A DdefNewGeneration.hpp68 // full collection.
80 // the full collection.
85 // the subsequent full collection will look at from-space objects:
285 virtual void gc_prologue(bool full);
286 virtual void gc_epilogue(bool full);
299 // Need to declare the full complement of closures, whether we'll
327 virtual void collect(bool full,
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterizedTypeImpl.java127 boolean full) {
129 return TypeMaker.getTypeName(cl, full);
133 s.append(TypeMaker.getTypeName(cl, full));
136 s.append(parameterizedTypeToString(env, encl, full))
140 s.append(TypeMaker.typeArgumentsString(env, cl, full));
126 parameterizedTypeToString(DocEnv env, ClassType cl, boolean full) argument
H A DTypeMaker.java106 public static String getTypeName(Type t, boolean full) { argument
114 s.insert(0, getTypeName(t, full));
117 return ClassDocImpl.getClassName((ClassSymbol)t.tsym, full);
126 * Class names are qualified if "full" is true.
128 static String getTypeString(DocEnv env, Type t, boolean full) { argument
136 s.insert(0, getTypeString(env, t, full));
140 parameterizedTypeToString(env, (ClassType)t, full);
143 return WildcardTypeImpl.wildcardTypeToString(env, a, full);
152 * optional bounds. Class names are qualified if "full" is true.
155 static String typeParametersString(DocEnv env, Symbol sym, boolean full) { argument
173 typeArgumentsString(DocEnv env, ClassType cl, boolean full) argument
[all...]
H A DWildcardTypeImpl.java96 * included. Class names are qualified if "full" is true.
99 Type.WildcardType wildThing, boolean full) {
101 return TypeMaker.getTypeName(env.types.erasure(wildThing), full);
118 s.append(TypeMaker.getTypeString(env, b, full));
98 wildcardTypeToString(DocEnv env, Type.WildcardType wildThing, boolean full) argument
H A DTypeVariableImpl.java99 * "extends" clause. Class names are qualified if "full" is true.
101 static String typeVarToString(DocEnv env, TypeVar v, boolean full) { argument
108 s.append(TypeMaker.getTypeString(env, b, full));
H A DExecutableMemberDocImpl.java228 private String makeSignature(boolean full) { argument
233 result.append(TypeMaker.getTypeString(env, t, full));
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DGenerator.java51 private boolean full = false; field in class:Generator
67 " -full <true|false> True if we should build the whole LAF or false for building just states and painters.\n" +
77 boolean full = false;
86 if ("-full".equals(key)) {
87 full = Boolean.parseBoolean(value);
101 System.out.println(" full :" + full);
111 Generator.init(full, buildDir, packagePrefix, lafName, model);
120 * @param full True if we should build the whole LAF or false for building just states and painters.
132 private Generator(boolean full, Fil argument
167 init(boolean full, File buildDir, String packageNamePrefix, String lafName, SynthModel model) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1HRPrinter.hpp159 void start_gc(bool full, size_t gc_num) { argument
161 if (!full) {
169 void end_gc(bool full, size_t gc_num) { argument
171 if (!full) {
/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.hpp92 bool full() { function in class:CompressedWriteStream
99 if (full()) grow();
118 void write_int(jint value) { if ((juint)value < L && !full())
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DvmGCOperations.hpp66 // - these operations preform full collection of heaps of
74 unsigned int _full_gc_count_before; // full gc count before acquiring PLL
75 bool _full; // whether a "full" collection
90 bool full = false) {
91 _full = full;
126 static void notify_gc_begin(bool full = false);
141 0 /* total full collections, dummy, ignored */,
189 : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true /* full */),
H A DvmGCOperations.cpp51 void VM_GC_Operation::notify_gc_begin(bool full) { argument
53 HS_DTRACE_PROBE1(hotspot, gc__begin, full);
57 full);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DSourceMapper.java117 String full = pkgName.replace('.', File.separatorChar) + filename;
119 File path = new File(dirs[i], full);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceManager.java133 String full = pkgName.replace('.', File.separatorChar) + filename;
134 File path = sourcePath.resolve(full);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsLinkSupport.java386 String full = GetFullPathName(path.toString());
387 if (!full.equals(path.toString())) {
388 path = WindowsPath.createFromNormalizedPath(fs, full);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp716 // number of full gc's since the last concurrent gc.
861 void acquire_control_and_collect(bool full, bool clear_all_soft_refs);
902 // XXXPERM bool should_collect(bool full, size_t size, bool tlab);
905 void collect(bool full,
941 void gc_prologue(bool full);
942 void gc_epilogue(bool full);
1119 virtual void update_gc_stats(int level, bool full);
1185 // Does a "full" (forced) collection invoked on this generation collect
1235 bool should_collect(bool full, size_t size, bool tlab);
1238 void collect(bool full,
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparMarkBitMap.cpp180 assert(status == would_overflow || status == full, "sanity");
228 assert(status == would_overflow || status == full, "sanity");
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp335 // (A scavenge is a GC which is not a full GC.)
534 // "System.gc". This probably implies as full a collection as the
558 void increment_total_collections(bool full = false) {
560 if (full) {
629 // Generate any dumps preceding or following a full gc
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dmain.cpp160 static void usage(unpacker* u, const char* progname, bool full = false) {
165 if (!full) {

Completed in 83 milliseconds

12