Searched refs:_started (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMarkThread.hpp49 volatile bool _started; member in class:ConcurrentMarkThread
74 void set_started() { assert(!_in_progress, "cycle in progress"); _started = true; }
75 void clear_started() { assert(_in_progress, "must be starting a cycle"); _started = false; }
76 bool started() { return _started; }
78 void set_in_progress() { assert(_started, "must be starting a cycle"); _in_progress = true; }
79 void clear_in_progress() { assert(!_started, "must not be starting a new cycle"); _in_progress = false; }
H A DconcurrentMarkThread.cpp45 _started(false),
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceEvent.hpp47 bool _started; member in class:TraceEvent
59 _started(false)
68 _started = true;
80 return _started;
140 if (_started) {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DTextSerializer.java123 if ( ! _started )
225 * This method will check if it has not been called before ({@link #_started}),
238 _started = true;
264 if ( ! _started )
H A DHTMLSerializer.java220 if ( ! _started )
500 if ( ! _started )
622 * This method will check if it has not been called before ({@link #_started}),
636 if ( ! _started ) {
689 _started = true;
720 if ( ! _started )
H A DXMLSerializer.java244 if (! _started)
453 if (! _started)
540 * This method will check if it has not been called before ({@link #_started}),
553 if (! _started) {
622 _started = true;
668 if (! _started) {
H A DBaseMarkupSerializer.java173 protected boolean _started; field in class:BaseMarkupSerializer
386 _started = false;
1256 _started = true;
1286 if (! _started) {

Completed in 43 milliseconds