Searched refs:ThreadService (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp47 bool ThreadService::_thread_monitoring_contention_enabled = false;
48 bool ThreadService::_thread_cpu_time_enabled = false;
49 bool ThreadService::_thread_allocated_memory_enabled = false;
51 PerfCounter* ThreadService::_total_threads_count = NULL;
52 PerfVariable* ThreadService::_live_threads_count = NULL;
53 PerfVariable* ThreadService::_peak_threads_count = NULL;
54 PerfVariable* ThreadService::_daemon_threads_count = NULL;
55 volatile int ThreadService::_exiting_threads_count = 0;
56 volatile int ThreadService::_exiting_daemon_threads_count = 0;
58 ThreadDumpResult* ThreadService
[all...]
H A DthreadService.hpp53 class ThreadService : public AllStatic { class in inherits:AllStatic
62 // They will be atomically decremented when ThreadService::remove_thread is called.
454 _active = ThreadService::is_thread_monitoring_contention();
483 _active = ThreadService::is_thread_monitoring_contention();
510 bool active = ThreadService::is_thread_monitoring_contention();
567 _active = ThreadService::is_thread_monitoring_contention();
H A Dmanagement.cpp77 ThreadService::init();
184 ThreadService::oops_do(f);
265 if (ThreadService::is_thread_monitoring_contention()) {
895 return ThreadService::is_thread_monitoring_contention();
897 return ThreadService::is_thread_cpu_time_enabled();
899 return ThreadService::is_thread_allocated_memory_enabled();
914 return ThreadService::set_thread_monitoring_contention(flag != 0);
916 return ThreadService::set_thread_cpu_time_enabled(flag != 0);
918 return ThreadService::set_thread_allocated_memory_enabled(flag != 0);
995 return ThreadService
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/tasks/
H A DThreadService.java38 public class ThreadService implements TaskServer { class in inherits:TaskServer
40 public ThreadService(int threadNumber) { method in class:ThreadService
156 super(threadGroup, "ThreadService-"+counter++);
239 private ThreadGroup threadGroup = new ThreadGroup("ThreadService");
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp248 _deadlocks = ThreadService::find_deadlocks_at_safepoint(_concurrent_locks);
H A Dthread.cpp1816 ThreadService::current_thread_exiting(this);
4049 ThreadService::add_thread(p, daemon);
4087 ThreadService::remove_thread(p, daemon);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpAdaptorServer.java78 import com.sun.jmx.snmp.tasks.ThreadService;
324 private ThreadService threadService;
2646 threadService = new ThreadService(threadNumber);
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp4296 Handle stacktraces = ThreadService::dump_stack_traces(thread_handle_array, num_threads, CHECK_NULL);

Completed in 97 milliseconds