Lines Matching refs:set_events
76 nub_event_t set_events = ctx.Events().WaitForSetEvents(event_mask); in RNBRunLoopGetStartModeFromRemote() local
79 __FUNCTION__, event_mask, set_events); in RNBRunLoopGetStartModeFromRemote()
81 if (set_events & RNBContext::event_read_packet_available) { in RNBRunLoopGetStartModeFromRemote()
252 nub_event_t set_events = ctx.Events().WaitForSetEvents(event_mask); in RNBRunLoopInferiorExecuting() local
255 __FUNCTION__, event_mask, set_events, in RNBRunLoopInferiorExecuting()
256 ctx.EventsAsString(set_events, set_events_str)); in RNBRunLoopInferiorExecuting()
258 if (set_events) { in RNBRunLoopInferiorExecuting()
259 if ((set_events & RNBContext::event_proc_thread_exiting) || in RNBRunLoopInferiorExecuting()
260 (set_events & RNBContext::event_proc_stdio_available)) { in RNBRunLoopInferiorExecuting()
264 if (set_events & RNBContext::event_read_packet_available) { in RNBRunLoopInferiorExecuting()
267 set_events ^= RNBContext::event_read_packet_available; in RNBRunLoopInferiorExecuting()
280 if (set_events & RNBContext::event_proc_state_changed) { in RNBRunLoopInferiorExecuting()
283 set_events ^= RNBContext::event_proc_state_changed; in RNBRunLoopInferiorExecuting()
286 if (set_events & RNBContext::event_proc_thread_exiting) { in RNBRunLoopInferiorExecuting()
290 if (set_events & RNBContext::event_read_thread_exiting) { in RNBRunLoopInferiorExecuting()
304 if (set_events != 0) in RNBRunLoopInferiorExecuting()
305 ctx.Events().ResetEvents(set_events); in RNBRunLoopInferiorExecuting()