Home
last modified time | relevance | path

Searched refs:got_event (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/test/API/api/multithreaded/
Dtest_stop-hook.cpp.template112 bool got_event;
114 got_event = dbg.GetListener().WaitForEventForBroadcaster(
116 if (!got_event)
122 got_event = dbg.GetListener().WaitForEventForBroadcaster(
124 if (!got_event)
Dtest_listener_resume.cpp.template31 bool got_event = g_listener.WaitForEvent(1, event);
32 if (got_event) {
Dtest_listener_event_process_state.cpp.template28 bool got_event = g_listener.WaitForEvent(1, event);
29 if (got_event) {
Dtest_listener_event_description.cpp.template28 bool got_event = g_listener.WaitForEvent(1, event);
30 if (got_event) {
/external/llvm-project/lldb/test/API/functionalities/signal/
DTestSendSignal.py104 got_event = process_listener.WaitForEventForBroadcasterWithType(
106 self.assertTrue(got_event, "Got an event")
/external/llvm-project/lldb/utils/lui/
Ddebuggerdriver.py113 got_event = self.listener.WaitForEvent(lldb.UINT32_MAX, event)
114 if got_event and not event.IsValid():
/external/llvm-project/lldb/source/Target/
DProcess.cpp4943 bool got_event; in RunThreadPlan() local
5024 got_event = in RunThreadPlan()
5026 if (!got_event) { in RunThreadPlan()
5113 got_event = false; in RunThreadPlan()
5116 got_event = listener_sp->GetEvent(event_sp, timeout); in RunThreadPlan()
5118 if (got_event) { in RunThreadPlan()
5243 got_event = in RunThreadPlan()
5246 if (got_event) { in RunThreadPlan()
/external/libevent/test/
Dregress.c483 short got_event; in test_simpleclose() local
492 ev = event_new(base, pair[0], events, record_event_cb, &got_event); in test_simpleclose()
496 got_event = 0; in test_simpleclose()
516 tt_int_op(got_event, ==, (events & ~EV_PERSIST)); in test_simpleclose()