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

/openjdk10/hotspot/src/share/vm/services/
H A DmemBaseline.hpp161 size_t thread_count() const { function in class:VALUE_OBJ_CLASS_SPEC
163 return _malloc_memory_snapshot.thread_count();
H A DmemReporter.cpp151 out->print_cr("%27s (thread #" SIZE_FORMAT ")", " ", _malloc_snapshot->thread_count());
426 out->print("%27s (thread #" SIZE_FORMAT "", " ", _current_baseline.thread_count());
427 int thread_count_diff = (int)(_current_baseline.thread_count() -
428 _early_baseline.thread_count());
H A DmallocTracker.hpp164 inline size_t thread_count() const {
/openjdk10/test/fmw/gtest/src/
H A Dgtest-port.cc91 mach_msg_type_number_t thread_count; local
93 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
99 sizeof(thread_t) * thread_count);
100 return static_cast<size_t>(thread_count);
H A Dgtest-death-test.cc216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) { argument
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp544 void allocate_and_fill_stacks(jint thread_count);
584 VM_GetThreadListStackTraces(JvmtiEnv *env, jint thread_count, const jthread* thread_list, jint max_frame_count) argument
586 _thread_count = thread_count;
H A DjvmtiEnvBase.cpp1256 VM_GetMultipleStackTraces::allocate_and_fill_stacks(jint thread_count) { argument
1258 jlong alloc_size = thread_count * sizeof(jvmtiStackInfo)
1263 jvmtiStackInfo *si = _stack_info + thread_count; // bottom of stack info
H A DjvmtiEnv.cpp1499 // thread_count - pre-checked to be greater than or equal to 0
1504 JvmtiEnv::GetThreadListStackTraces(jint thread_count, const jthread* thread_list, jint max_frame_count, jvmtiStackInfo** stack_info_ptr) { argument
1507 VM_GetThreadListStackTraces op(this, thread_count, thread_list, max_frame_count);

Completed in 200 milliseconds