Home
last modified time | relevance | path

Searched refs:start_frame (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc1038 uint32_t start_frame = request.ReadUnsigned32("start frame"); in TR_Frames() local
1051 if (start_frame > actual_frame_count) { in TR_Frames()
1055 length = actual_frame_count - start_frame; in TR_Frames()
1057 if (start_frame + length > actual_frame_count) { in TR_Frames()
1061 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply); in TR_Frames()
/art/runtime/
Ddebugger.h454 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
Ddebugger.cc2311 JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, in GetThreadFrames() argument
2315 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf) in GetThreadFrames() argument
2318 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) { in GetThreadFrames()
2360 GetFrameVisitor visitor(thread, start_frame, frame_count, buf); in GetThreadFrames()