Lines Matching refs:evc1
260 struct event_and_count evc1, evc2; in test_fin_within_cb() local
261 evc1.count = evc2.count = 0; in test_fin_within_cb()
262 evc2.ev2 = evc1.ev = evtimer_new(base, timer_callback_2, &evc1); in test_fin_within_cb()
263 evc1.ev2 = evc2.ev = evtimer_new(base, timer_callback_2, &evc2); in test_fin_within_cb()
268 event_active(evc1.ev, EV_TIMEOUT, 1); in test_fin_within_cb()
272 tt_int_op(evc1.count, ==, 101); in test_fin_within_cb()
277 evc1.count = evc2.count = 0; in test_fin_within_cb()
278 evc2.ev2 = evc1.ev = event_new(base, -1, EV_PERSIST, timer_callback_2, &evc1); in test_fin_within_cb()
279 evc1.ev2 = evc2.ev = event_new(base, -1, EV_PERSIST, timer_callback_2, &evc2); in test_fin_within_cb()
281 event_active(evc1.ev, EV_TIMEOUT, 1); in test_fin_within_cb()
285 tt_int_op(evc1.count, ==, 101); in test_fin_within_cb()