Lines Matching refs:watched_stops_
73 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) { in Stop()
74 sim_->watched_stops_[code].desc = msg; in Stop()
1495 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop()
1502 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
1510 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
1518 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter()
1523 watched_stops_[code].count = 0; in IncreaseStopCounter()
1526 watched_stops_[code].count++; in IncreaseStopCounter()
1538 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
1541 if (watched_stops_[code].desc) { in PrintStopInfo()
1543 state, count, watched_stops_[code].desc); in PrintStopInfo()