Lines Matching refs:intVal
2558 uint32_t intVal; in GetLocalValue() local
2559 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2560 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal; in GetLocalValue()
2561 JDWP::Set1(buf + 1, intVal != 0); in GetLocalValue()
2570 uint32_t intVal; in GetLocalValue() local
2571 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2572 VLOG(jdwp) << "get byte local " << reg << " = " << intVal; in GetLocalValue()
2573 JDWP::Set1(buf + 1, intVal); in GetLocalValue()
2583 uint32_t intVal; in GetLocalValue() local
2584 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2585 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal; in GetLocalValue()
2586 JDWP::Set2BE(buf + 1, intVal); in GetLocalValue()
2595 uint32_t intVal; in GetLocalValue() local
2596 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2597 VLOG(jdwp) << "get int local " << reg << " = " << intVal; in GetLocalValue()
2598 JDWP::Set4BE(buf + 1, intVal); in GetLocalValue()
2607 uint32_t intVal; in GetLocalValue() local
2608 if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) { in GetLocalValue()
2609 VLOG(jdwp) << "get float local " << reg << " = " << intVal; in GetLocalValue()
2610 JDWP::Set4BE(buf + 1, intVal); in GetLocalValue()
2625 uint32_t intVal; in GetLocalValue() local
2626 if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) { in GetLocalValue()
2627 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); in GetLocalValue()