Lines Matching refs:m_signals

61     m_signals.clear();  in Reset()
110 m_signals.insert (std::make_pair(signo, new_signal)); in AddSignal()
116 collection::iterator pos = m_signals.find (signo); in RemoveSignal()
117 if (pos != m_signals.end()) in RemoveSignal()
118 m_signals.erase (pos); in RemoveSignal()
124 collection::const_iterator pos = m_signals.find (signo); in GetSignalAsCString()
125 if (pos == m_signals.end()) in GetSignalAsCString()
135 return m_signals.find (signo) != m_signals.end(); in SignalIsValid()
144 collection::const_iterator pos, end = m_signals.end (); in GetSignalNumberFromName()
145 for (pos = m_signals.begin (); pos != end; pos++) in GetSignalNumberFromName()
160 if (m_signals.empty()) in GetFirstSignalNumber()
163 return (*m_signals.begin ()).first; in GetFirstSignalNumber()
169 collection::const_iterator pos = m_signals.find (current_signal); in GetNextSignalNumber()
170 collection::const_iterator end = m_signals.end(); in GetNextSignalNumber()
192 collection::const_iterator pos = m_signals.find (signo); in GetSignalInfo()
193 if (pos == m_signals.end()) in GetSignalInfo()
208 collection::const_iterator pos = m_signals.find (signo); in GetShouldSuppress()
209 if (pos != m_signals.end()) in GetShouldSuppress()
217 collection::iterator pos = m_signals.find (signo); in SetShouldSuppress()
218 if (pos != m_signals.end()) in SetShouldSuppress()
238 collection::const_iterator pos = m_signals.find (signo); in GetShouldStop()
239 if (pos != m_signals.end()) in GetShouldStop()
247 collection::iterator pos = m_signals.find (signo); in SetShouldStop()
248 if (pos != m_signals.end()) in SetShouldStop()
268 collection::const_iterator pos = m_signals.find (signo); in GetShouldNotify()
269 if (pos != m_signals.end()) in GetShouldNotify()
277 collection::iterator pos = m_signals.find (signo); in SetShouldNotify()
278 if (pos != m_signals.end()) in SetShouldNotify()