Lines Matching refs:watched_stops_
78 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) { in Stop()
79 sim_->watched_stops_[code].desc = msg; in Stop()
1497 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop()
1504 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
1512 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
1520 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7FFFFFFF) { in IncreaseStopCounter()
1525 watched_stops_[code].count = 0; in IncreaseStopCounter()
1528 watched_stops_[code].count++; in IncreaseStopCounter()
1540 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
1543 if (watched_stops_[code].desc) { in PrintStopInfo()
1545 state, count, watched_stops_[code].desc); in PrintStopInfo()