Searched defs:retain (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DparGCAllocBuffer.cpp52 void ParGCAllocBuffer::retire(bool end_of_gc, bool retain) { argument
53 assert(!retain || end_of_gc, "Can only retain at GC end.");
65 if (!retain) {
68 // Is there wasted space we'd like to retain for the next GC?
208 void ParGCAllocBufferWithBOT::retire(bool end_of_gc, bool retain) { argument
209 assert(!retain || end_of_gc, "Can only retain at GC end.");
216 if (retain && _hard_end != NULL) {
225 ParGCAllocBuffer::retire(end_of_gc, retain);
[all...]
H A DparGCAllocBuffer.hpp128 void flush_stats_and_retire(PLABStats* stats, bool end_of_gc, bool retain) { argument
145 retire(end_of_gc, retain);
151 assert(!_retained, "Shouldn't retain an invalidated buffer.");
159 // If "end_of_gc" is TRUE, is after the last use in the GC. IF "retain"
161 void retire(bool end_of_gc, bool retain);
257 void retire(bool end_of_gc, bool retain);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsatbQueue.cpp83 // at the end. If we are going to retain it we will copy it to its
88 bool retain = g1h->is_obj_ill(obj); local
89 if (retain) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.h110 INLINE void WaitUntilSignalled(BOOL retain) { argument
115 if (!retain) ::ReleaseMutex(m_mutex);
H A Dawt_DnDDT.h91 INLINE void WaitUntilSignalled(BOOL retain) { argument
96 if (!retain) ::ReleaseMutex(m_mutex);
218 INLINE void WaitUntilSignalled(BOOL retain) { argument
223 if (!retain) ::ReleaseMutex(m_mutex);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTarget.java289 // strong clean call; retain sequenceNum
290 entry.retain(sequenceNum);
464 void retain(long sequenceNum) { method in class:SequenceEntry
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java62 * by <code>retain</code>, a boolean XOR is implemented by
66 * union, <code>retain</code> is an intersection, <code>remove</code>
823 * @param c set that defines which elements this set will retain.
827 retain(c.list, c.len, 0);
843 retain(c.list, c.len, 2);
1501 private UnicodeSet retain(int[] other, int otherLen, int polarity) { method in class:UnicodeSet

Completed in 42 milliseconds