Lines Matching refs:desc
72 bool GetValue(const char* desc, int32_t* value);
73 bool GetVFPSingleValue(const char* desc, float* value);
74 bool GetVFPDoubleValue(const char* desc, double* value);
114 if (isWatchedStop(code) && !watched_stops[code].desc) {
115 watched_stops[code].desc = msg;
143 if (sim_->isWatchedStop(code) && !sim_->watched_stops[code].desc) {
144 sim_->watched_stops[code].desc = msg;
177 bool ArmDebugger::GetValue(const char* desc, int32_t* value) {
178 int regnum = Registers::Number(desc);
183 if (strncmp(desc, "0x", 2) == 0) {
184 return SScanF(desc + 2, "%x", reinterpret_cast<uint32_t*>(value)) == 1;
186 return SScanF(desc, "%u", reinterpret_cast<uint32_t*>(value)) == 1;
193 bool ArmDebugger::GetVFPSingleValue(const char* desc, float* value) {
195 int regnum = VFPRegisters::Number(desc, &is_double);
204 bool ArmDebugger::GetVFPDoubleValue(const char* desc, double* value) {
206 int regnum = VFPRegisters::Number(desc, &is_double);
1989 if (watched_stops[code].desc) {
1991 code, code, state, count, watched_stops[code].desc);