Lines Matching refs:m_options

53     m_options (),
127 if (enable == m_options.IsEnabled())
130 m_options.SetEnabled(enable);
143 return m_options.IsEnabled();
149 if (m_options.GetIgnoreCount() == n)
152 m_options.SetIgnoreCount(n);
159 uint32_t ignore = m_options.GetIgnoreCount();
161 m_options.SetIgnoreCount(ignore - 1);
167 return m_options.GetIgnoreCount();
195 return m_options.IsOneShot();
201 m_options.SetOneShot (one_shot);
207 if (m_options.GetThreadSpec()->GetTID() == thread_id)
210 m_options.GetThreadSpec()->SetTID(thread_id);
217 if (m_options.GetThreadSpecNoCreate() == NULL)
220 return m_options.GetThreadSpecNoCreate()->GetTID();
226 if (m_options.GetThreadSpec()->GetIndex() == index)
229 m_options.GetThreadSpec()->SetIndex(index);
236 if (m_options.GetThreadSpecNoCreate() == NULL)
239 return m_options.GetThreadSpecNoCreate()->GetIndex();
245 if (m_options.GetThreadSpec()->GetName() != NULL
246 && ::strcmp (m_options.GetThreadSpec()->GetName(), thread_name) == 0)
249 m_options.GetThreadSpec()->SetName (thread_name);
256 if (m_options.GetThreadSpecNoCreate() == NULL)
259 return m_options.GetThreadSpecNoCreate()->GetName();
265 if (m_options.GetThreadSpec()->GetQueueName() != NULL
266 && ::strcmp (m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0)
269 m_options.GetThreadSpec()->SetQueueName (queue_name);
276 if (m_options.GetThreadSpecNoCreate() == NULL)
279 return m_options.GetThreadSpecNoCreate()->GetQueueName();
285 m_options.SetCondition (condition);
292 return m_options.GetConditionText();
301 m_options.SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous);
311 m_options.SetCallback(callback, callback_baton_sp, is_synchronous);
317 m_options.ClearCallback ();
323 return m_options.InvokeCallback (context, GetID(), bp_loc_id);
329 return &m_options;