Home
last modified time | relevance | path

Searched refs:GetEventBits (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/lldb/source/Utility/
H A DBroadcaster.cpp383 return GetEventBits() < rhs.GetEventBits(); in operator <()
397 uint32_t available_bits = event_spec.GetEventBits(); in RegisterListenerForEventsNoLock()
406 available_bits &= ~((*iter).first.GetEventBits()); in RegisterListenerForEventsNoLock()
431 (input.first.GetEventBits() & event_spec.GetEventBits()) != 0 && in UnregisterListenerForEventsNoLock()
435 uint32_t event_bits_to_remove = event_spec.GetEventBits(); in UnregisterListenerForEventsNoLock()
443 uint32_t iter_event_bits = (*iter).first.GetEventBits(); in UnregisterListenerForEventsNoLock()
538 (*iter).first.GetEventBits()); in SignUpListenersForBroadcaster()
/src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DBroadcaster.h49 uint32_t GetEventBits() const { return m_event_bits; } in GetEventBits() function
57 uint32_t in_bits = in_spec.GetEventBits(); in IsContainedIn()