Searched defs:max_depth (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp267 int max_depth,
274 _max_depth = max_depth;
282 int max_depth,
289 _max_depth = max_depth;
266 VM_ThreadDump(ThreadDumpResult* result, int max_depth, bool with_locked_monitors, bool with_locked_synchronizers) argument
279 VM_ThreadDump(ThreadDumpResult* result, GrowableArray<instanceHandle>* threads, int num_threads, int max_depth, bool with_locked_monitors, bool with_locked_synchronizers) argument
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp786 void ThreadSnapshot::dump_stack_at_safepoint(int max_depth, bool with_locked_monitors) { argument
788 _stack_trace->dump_stack_at_safepoint(max_depth);
H A Dmanagement.cpp1123 int max_depth,
1146 max_depth, /* stack depth */
1120 do_thread_dump(ThreadDumpResult* dump_result, typeArrayHandle ids_ah, int num_threads, int max_depth, bool with_locked_monitors, bool with_locked_synchronizers, TRAPS) argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tls.c306 setup_trace_buffers(TlsInfo *info, int max_depth) argument
311 if ( info->frames_buffer != NULL && info->buffer_depth >= max_depth ) {
320 info->buffer_depth = max_depth;
321 max_frames = max_depth + 4; /* Allow for BCI & <init> */
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp1666 int max_depth = youngest_jvms->depth(); local
1667 for (int depth = 1; depth <= max_depth; depth++) {
H A Druntime.cpp1281 int max_depth = youngest_jvms->depth(); local
1286 for (int depth = max_depth; depth >= 1; depth--) {
H A Dmacro.cpp1865 int max_depth = youngest_jvms->depth(); local
1866 for (int depth = 1; depth <= max_depth; depth++) {
H A Doutput.cpp853 int max_depth = youngest_jvms->depth(); local
861 for (int depth = 1; depth <= max_depth; depth++) {
956 assert(!jvms->should_reexecute() || depth == max_depth, "reexecute allowed only for the youngest");
1034 int max_depth = youngest_jvms->depth(); local
1037 for (int depth = 1; depth <= max_depth; depth++) {
1040 assert(!jvms->should_reexecute() || depth==max_depth, "reexecute allowed only for the youngest");
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1434 int max_depth = MaxJavaStackTraceDepth; local
1441 if (max_depth >= 1 && method() != NULL) {
1466 for (frame fr = thread->last_frame(); max_depth != total_count;) {

Completed in 102 milliseconds