Lines Matching refs:old_stack_info
476 jvmtiStackInfo& old_stack_info = stack_info_array.get()[i]; in GetAllStackTraces() local
483 if (old_stack_info.frame_count > 0) { in GetAllStackTraces()
485 size_t frames_size = static_cast<size_t>(old_stack_info.frame_count) * sizeof(jvmtiFrameInfo); in GetAllStackTraces()
486 memcpy(frame_info, old_stack_info.frame_buffer, frames_size); in GetAllStackTraces()
488 frame_info += old_stack_info.frame_count; in GetAllStackTraces()
659 jvmtiStackInfo& old_stack_info = stack_info_array.get()[f_index]; in GetThreadListStackTraces() local
662 memcpy(&new_stack_info, &old_stack_info, sizeof(jvmtiStackInfo)); in GetThreadListStackTraces()
664 if (old_stack_info.frame_count > 0) { in GetThreadListStackTraces()
667 static_cast<size_t>(old_stack_info.frame_count) * sizeof(jvmtiFrameInfo); in GetThreadListStackTraces()
668 memcpy(frame_info, old_stack_info.frame_buffer, frames_size); in GetThreadListStackTraces()
670 frame_info += old_stack_info.frame_count; in GetThreadListStackTraces()