Searched refs:get_value (Results 1 - 17 of 17) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DclassLoadingService.hpp61 return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();
64 return _classes_unloaded_count->get_value() + _shared_classes_unloaded_count->get_value();
68 return _classbytes_loaded->get_value() + _shared_classbytes_loaded->get_value();
75 return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();
82 return _shared_classes_loaded_count->get_value();
85 return _shared_classes_unloaded_count->get_value();
[all...]
H A DruntimeService.cpp175 Management::ticks_to_ms(_sync_time_ticks->get_value()) : -1;
180 _total_safepoints->get_value() : -1;
184 Management::ticks_to_ms(_safepoint_time_ticks->get_value()) : -1;
189 Management::ticks_to_ms(_application_time_ticks->get_value()) : -1;
H A Dmanagement.hpp80 return _begin_vm_creation_time->get_value();
83 return _vm_init_done_time->get_value();
H A DthreadService.hpp90 static jlong get_total_thread_count() { return _total_threads_count->get_value(); }
91 static jlong get_peak_thread_count() { return _peak_threads_count->get_value(); }
92 static jlong get_live_thread_count() { return _live_threads_count->get_value() - _exiting_threads_count; }
93 static jlong get_daemon_thread_count() { return _daemon_threads_count->get_value() - _exiting_daemon_threads_count; }
H A DthreadService.cpp109 if (_live_threads_count->get_value() > _peak_threads_count->get_value()) {
110 _peak_threads_count->set_value(_live_threads_count->get_value());
126 _live_threads_count->set_value(_live_threads_count->get_value() - 1);
129 _daemon_threads_count->set_value(_daemon_threads_count->get_value() - 1);
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DDynFixed.java44 public byte[] get_value(); method in interface:DynFixed
53 * @see #get_value
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgSpaceCounters.hpp86 return _used->get_value();
89 return _used->get_value();
H A DhSpaceCounters.hpp73 return _used->get_value();
76 return _used->get_value();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynFixedImpl.java73 public String get_value () { method in class:DynFixedImpl
208 return "DynFixed with value=" + this.get_value() + ", digits=" + digits + ", scale=" + scale;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp1030 Management::ticks_to_ms(_perf_accumulated_time->get_value()) : -1;
1034 return UsePerfData ? _perf_classes_inited->get_value() : -1;
1039 Management::ticks_to_ms(_perf_class_init_time->get_value()) : -1;
1044 Management::ticks_to_ms(_perf_class_verify_time->get_value()) : -1;
1048 return UsePerfData ? _perf_classes_linked->get_value() : -1;
1053 Management::ticks_to_ms(_perf_class_link_time->get_value()) : -1;
H A DjavaClasses.hpp773 static BasicType get_value(oop box, jvalue* value);
778 static void print(oop box, outputStream* st) { jvalue value; print(get_value(box, &value), &value, st); }
H A DclassFileParser.cpp711 BasicType value_type = java_lang_boxing_object::get_value(patch(), &value);
H A DjavaClasses.cpp2262 BasicType java_lang_boxing_object::get_value(oop box, jvalue* value) { function in class:java_lang_boxing_object
/openjdk7/corba/src/share/classes/org/omg/DynamicAny/
H A DDynamicAny.idl667 string get_value();
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp400 return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.hpp369 inline jlong get_value() { return *(jlong*)_valuep; } function in class:PerfLong
H A Dreflection.cpp105 return java_lang_boxing_object::get_value(box, value);

Completed in 118 milliseconds