Searched defs:generation (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCyclicBarrier.java134 * Each use of the barrier is represented as a generation instance.
135 * The generation changes whenever the barrier is tripped, or
141 * There need not be an active generation if there has been a break
156 /** The current generation */
157 private Generation generation = new Generation(); field in class:CyclicBarrier
161 * on each generation. It is reset to parties on each new
162 * generation or when broken.
171 // signal completion of last generation
173 // set up next generation
175 generation
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DgenOopClosures.hpp42 // Closure for iterating roots from a particular generation
49 Generation* _orig_gen; // generation originally set in ctor
50 Generation* _gen; // generation being scanned
54 HeapWord* _gen_boundary; // start of generation
58 Generation* generation() { return _gen; } function in class:OopsInGenClosure
160 // at once, with no notion of which generation they were in.
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFileHandler.java87 * <li> "%g" the generation number to distinguish rotated logs
92 * than one, then the generation number will be added to the end of
108 * (This will be after any automatically added generation number.)
463 private File generate(String pattern, int generation, int unique) throws IOException { argument
505 word = word + generation;
523 word = word + "." + generation;
/openjdk7/hotspot/src/share/vm/services/
H A DmemTracker.hpp150 NMT_out_of_generation, // running out of generation queue
185 return "Native memory tracking has been shutdown due to running out of generation buffer";
428 static void set_current_processing_generation(unsigned long generation) { argument
430 _processing_generation = generation;
488 // the generation that NMT is processing
490 // although NMT is still procesing current generation, but
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp72 // set its generation. The first is for two-gen configs where the
293 ParNewRefProcTaskExecutor(ParNewGeneration& generation, argument
295 : _generation(generation), _state_set(state_set)
331 // If true, older generation does not support promotion undo, so avoid.

Completed in 49 milliseconds