Lines Matching refs:watched_stops
114 if (isWatchedStop(code) && !watched_stops[code].desc) { in Stop()
115 watched_stops[code].desc = msg; in Stop()
143 if (sim_->isWatchedStop(code) && !sim_->watched_stops[code].desc) { in Stop()
144 sim_->watched_stops[code].desc = msg; in Stop()
1945 !(watched_stops[code].count & kStopDisabledBit); in isEnabledStop()
1952 watched_stops[code].count &= ~kStopDisabledBit; in EnableStop()
1960 watched_stops[code].count |= kStopDisabledBit; in DisableStop()
1968 if ((watched_stops[code].count & ~(1 << 31)) == 0x7fffffff) { in IncreaseStopCounter()
1971 watched_stops[code].count = 0; in IncreaseStopCounter()
1974 watched_stops[code].count++; in IncreaseStopCounter()
1986 int32_t count = watched_stops[code].count & ~kStopDisabledBit; in PrintStopInfo()
1989 if (watched_stops[code].desc) { in PrintStopInfo()
1991 code, code, state, count, watched_stops[code].desc); in PrintStopInfo()