Searched defs:frame_id (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dinstrumentation.h276 uintptr_t return_pc, size_t frame_id, bool interpreter_entry)
277 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
275 InstrumentationStackFrame(mirror::Object* this_object, mirror::ArtMethod* method, uintptr_t return_pc, size_t frame_id, bool interpreter_entry) argument
H A Dinstrumentation.cc472 size_t frame_id = StackVisitor::ComputeNumFrames(self) + delta; local
473 if (frame_id != instrumentation_frame.frame_id_) {
474 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found "
477 CHECK_EQ(frame_id, instrumentation_frame.frame_id_);
485 size_t frame_id = StackVisitor::ComputeNumFrames(self); local
491 frame_id, interpreter_entry);
H A Ddebugger.cc1881 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; member in struct:art::GetThisVisitor
1994 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, argument
2009 GetThisVisitor visitor(thread, context.get(), frame_id);
2015 GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) argument
2153 SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) argument
[all...]
/art/runtime/jdwp/
H A Djdwp_handler.cc1396 FrameId frame_id = request.ReadFrameId(); local
1408 Dbg::GetLocalValue(thread_id, frame_id, slot, reqSigByte, ptr, width);
1420 FrameId frame_id = request.ReadFrameId(); local
1430 Dbg::SetLocalValue(thread_id, frame_id, slot, sigByte, value, width);
1439 FrameId frame_id = request.ReadFrameId(); local
1442 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id);

Completed in 212 milliseconds