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()
2311 !(watched_stops_[code].count & kStopDisabledBit); in isEnabledStop()
2317 watched_stops_[code].count &= ~kStopDisabledBit; in EnableStop()
2324 watched_stops_[code].count |= kStopDisabledBit; in DisableStop()
2331 if ((watched_stops_[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter()
2336 watched_stops_[code].count = 0; in IncreaseStopCounter()
2339 watched_stops_[code].count++; in IncreaseStopCounter()
2350 int32_t count = watched_stops_[code].count & ~kStopDisabledBit; in PrintStopInfo()
2353 if (watched_stops_[code].desc) { in PrintStopInfo()
2355 state, count, watched_stops_[code].desc); in PrintStopInfo()