Searched defs:thread_count (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/demo/jvmti/
H A DContext.java55 private final int thread_count; field in class:Context
139 Context(int thread_count, int thread_index, int thread_turns) { argument
140 this.thread_count = thread_count;
147 int next_thread_index = (thread_index + 1) % thread_count;
153 for (int i = 0; i < thread_turns * thread_count; i++) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_trace.c564 trace_get_all_current(jint thread_count, jthread *threads, argument
580 HPROF_ASSERT(thread_count > 0);
589 getThreadListStackTraces(thread_count, threads, real_depth, &stack_info);
597 /* Loop over the stack traces we have for these 'thread_count' threads */
598 for ( i = 0 ; i < thread_count ; i++ ) {
633 trace_increment_all_sample_costs(jint thread_count, jthread *threads, argument
642 HPROF_ASSERT(thread_count > 0);
650 nbytes = (int)sizeof(TraceIndex)*thread_count;
654 trace_get_all_current(thread_count, threads, thread_serial_nums,
661 for ( i = 0 ; i < thread_count ;
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp459 void allocate_and_fill_stacks(jint thread_count);
499 VM_GetThreadListStackTraces(JvmtiEnv *env, jint thread_count, const jthread* thread_list, jint max_frame_count) argument
501 _thread_count = thread_count;
H A DjvmtiEnvBase.cpp1241 VM_GetMultipleStackTraces::allocate_and_fill_stacks(jint thread_count) { argument
1243 jlong alloc_size = thread_count * sizeof(jvmtiStackInfo)
1248 jvmtiStackInfo *si = _stack_info + thread_count; // bottom of stack info
H A DjvmtiEnv.cpp1346 // thread_count - pre-checked to be greater than or equal to 0
1351 JvmtiEnv::GetThreadListStackTraces(jint thread_count, const jthread* thread_list, jint max_frame_count, jvmtiStackInfo** stack_info_ptr) { argument
1354 VM_GetThreadListStackTraces op(this, thread_count, thread_list, max_frame_count);
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h1521 jint thread_count,
1914 jvmtiError GetThreadListStackTraces(jint thread_count, argument
1918 return functions->GetThreadListStackTraces(this, thread_count, thread_list, max_frame_count, stack_info_ptr);

Completed in 946 milliseconds