• Home
  • Raw
  • Download

Lines Matching refs:intVal

2716       uint32_t intVal;  in GetLocalValue()  local
2717 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2720 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; in GetLocalValue()
2721 JDWP::Set1(buf + 1, intVal != 0); in GetLocalValue()
2726 uint32_t intVal; in GetLocalValue() local
2727 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2730 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; in GetLocalValue()
2731 JDWP::Set1(buf + 1, intVal); in GetLocalValue()
2737 uint32_t intVal; in GetLocalValue() local
2738 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2741 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal; in GetLocalValue()
2742 JDWP::Set2BE(buf + 1, intVal); in GetLocalValue()
2747 uint32_t intVal; in GetLocalValue() local
2748 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2751 VLOG(jdwp) << "get int local " << vreg << " = " << intVal; in GetLocalValue()
2752 JDWP::Set4BE(buf + 1, intVal); in GetLocalValue()
2757 uint32_t intVal; in GetLocalValue() local
2758 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) { in GetLocalValue()
2761 VLOG(jdwp) << "get float local " << vreg << " = " << intVal; in GetLocalValue()
2762 JDWP::Set4BE(buf + 1, intVal); in GetLocalValue()
2773 uint32_t intVal; in GetLocalValue() local
2774 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) { in GetLocalValue()
2777 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); in GetLocalValue()