Home | History | Annotate | Download | only in mips

Lines Matching refs:desc

96   bool GetValue(const char* desc, int32_t* value);
135 if (!watched_stops[code].desc) {
136 watched_stops[code].desc = msg;
166 if (!sim_->watched_stops[code].desc) {
167 sim_->watched_stops[code].desc = msg;
221 bool MipsDebugger::GetValue(const char* desc, int32_t* value) {
222 int regnum = Registers::Number(desc);
223 int fpuregnum = FPURegisters::Number(desc);
231 } else if (strncmp(desc, "0x", 2) == 0) {
232 return SScanF(desc, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
234 return SScanF(desc, "%i", value) == 1;
1658 if (watched_stops[code].desc) {
1660 code, code, state, count, watched_stops[code].desc);