Searched defs:_active (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Daprofiler.hpp48 static bool _active; // tells whether profiler is active member in class:AllocationProfiler
67 static bool is_active() { return _active; }
H A Daprofiler.cpp36 bool AllocationProfiler::_active = false; member in class:AllocationProfiler
76 _active = true;
81 _active = false;
H A Dtimer.hpp37 bool _active; member in class:VALUE_OBJ_CLASS_SPEC
39 elapsedTimer() { _active = false; reset(); }
48 bool is_active() const { return _active; }
83 bool _active; // do timing member in class:TraceTime
102 void suspend() { if (_active) _t.stop(); }
103 void resume() { if (_active) _t.start(); }
108 bool _active; // true if times will be measured and printed member in class:TraceCPUTime
H A DobjectMonitor.hpp50 bool _active ; // Contention monitoring is enabled member in class:ObjectWaiter
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFallback.java38 private boolean _active = false; field in class:Fallback
44 if (_active) {
56 _active = true;
68 if (_active) parseChildren(parser);
79 if (_active) translateContents(classGen, methodGen);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.hpp47 bool _active; member in class:ConcurrentG1RefineThread
62 void set_active(bool x) { _active = x; }
H A Dg1HRPrinter.hpp66 bool _active; member in class:VALUE_OBJ_CLASS_SPEC
89 const bool is_active() { return _active; }
93 void set_active(bool active) { _active = active; }
179 G1HRPrinter() : _active(false) { }
H A DptrQueue.hpp47 bool _active; member in class:VALUE_OBJ_CLASS_SPEC
84 if (!_active) return;
114 _active = b;
122 bool is_active() { return _active; }
145 return byte_offset_of(PtrQueue, _active);
/openjdk7/hotspot/src/share/vm/memory/
H A Diterator.hpp206 bool _active; member in class:MarkingCodeBlobClosure::MarkScope
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMixingSourceDataLine.java189 private boolean _active = false; field in class:SoftMixingSourceDataLine
206 _active = active;
214 if (_active) {
H A DSoftMixingClip.java143 private boolean _active = false; field in class:SoftMixingClip
177 _active = active;
180 active = _active;
207 if (_active) {
220 _active = false;
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp614 bool DerivedPointerTable::_active = false; member in class:DerivedPointerTable
621 assert (!_active, "should not be active");
626 _active = true;
637 if (_active) {
690 _active = false;
H A DoopMap.hpp294 static bool _active; // do not record pointers for verify pass etc. member in class:DerivedPointerTable
300 static bool is_active() { return _active; }
301 static void set_active(bool value) { _active = value; }
308 bool _active; member in class:DerivedPointerTableDeactivate
311 _active = DerivedPointerTable::is_active();
312 if (_active) {
320 if (_active) {
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.hpp446 bool _active; member in class:JavaThreadInObjectWaitState
454 _active = ThreadService::is_thread_monitoring_contention();
456 if (_active) {
460 _active = false;
465 if (_active) {
475 bool _active; member in class:JavaThreadParkedState
483 _active = ThreadService::is_thread_monitoring_contention();
485 if (_active) {
489 _active = false;
494 if (_active) {
504 bool _active; member in class:JavaThreadBlockedOnMonitorEnterState
561 bool _active; member in class:JavaThreadSleepState
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp50 BitMap _active; // for iteration of control flow graph member in class:VALUE_OBJ_CLASS_SPEC
101 , _active() // size not known yet
355 _active = BitMap(BlockBegin::number_of_blocks()); _active.clear();
389 if (_active.at(block_id)) {
403 _active.set_bit(block_id);
412 _active.clear_bit(block_id);
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java166 private static final byte _active = 1; field in class:JRSUIConstants.State
167 public static final State ACTIVE = new State(_active);

Completed in 82 milliseconds