Lines Matching refs:watched_stops
135 if (!watched_stops[code].desc) { in Stop()
136 watched_stops[code].desc = msg; in Stop()
166 if (!sim_->watched_stops[code].desc) { in Stop()
167 sim_->watched_stops[code].desc = msg; in Stop()
1614 return !(watched_stops[code].count & kStopDisabledBit); in IsEnabledStop()
1620 watched_stops[code].count &= ~kStopDisabledBit; in EnableStop()
1627 watched_stops[code].count |= kStopDisabledBit; in DisableStop()
1634 if ((watched_stops[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter()
1637 watched_stops[code].count = 0; in IncreaseStopCounter()
1640 watched_stops[code].count++; in IncreaseStopCounter()
1655 int32_t count = watched_stops[code].count & ~kStopDisabledBit; in PrintStopInfo()
1658 if (watched_stops[code].desc) { in PrintStopInfo()
1660 code, code, state, count, watched_stops[code].desc); in PrintStopInfo()