Home | History | Annotate | Download | only in runtime

Lines Matching full:frame_id

1881         JDWP::FrameId frame_id(GetFrameId());
1884 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3lld ", depth_, frame_id) << location;
1885 expandBufAdd8BE(buf_, frame_id);
1975 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
1977 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
1982 if (frame_id != GetFrameId()) {
1991 JDWP::FrameId frame_id;
1994 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2009 GetThisVisitor visitor(thread, context.get(), frame_id);
2015 void Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
2018 GetLocalVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id, int slot,
2021 : StackVisitor(thread, context), frame_id_(frame_id), slot_(slot), tag_(tag),
2149 GetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, buf, width);
2153 void Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
2157 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
2161 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {}
2236 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);