Searched refs:old_stack_info (Results 1 – 1 of 1) sorted by relevance
476 jvmtiStackInfo& old_stack_info = stack_info_array.get()[i]; in GetAllStackTraces() local483 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() local662 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()[all …]