Lines Matching refs:event

63 tx_sde(isc_task_t *task, isc_event_t *event) {
67 UNUSED(event);
93 isc_event_free(&event);
97 tx_te(isc_task_t *task, isc_event_t *event) {
111 if ((isc_timertype_t) event->ev_arg == isc_timertype_ticker)
114 if (event->ev_type != expected_event_type) {
115 t_info("expected event type %d, got %d\n",
116 expected_event_type, (int) event->ev_type);
182 isc_event_free(&event);
361 "creates a timer that posts an ISC_TIMEREVENT_TICK event to the "
400 "creates a timer that posts an ISC_TIMEEVENT_LIFE event to the "
446 t3_te(isc_task_t *task, isc_event_t *event) {
511 if (event->ev_type != ISC_TIMEREVENT_IDLE) {
512 t_info("received event type %d, expected type %d\n",
513 event->ev_type, ISC_TIMEREVENT_IDLE);
519 isc_event_free(&event);
527 "creates a timer that posts an ISC_TIMEEVENT_IDLE event to the "
576 t4_te(isc_task_t *task, isc_event_t *event) {
648 if (event->ev_type != ISC_TIMEREVENT_TICK) {
649 t_info("received event type %d, expected type %d\n",
650 event->ev_type, ISC_TIMEREVENT_IDLE);
677 if (event->ev_type != ISC_TIMEREVENT_LIFE) {
678 t_info("received event type %d, expected type %d\n",
679 event->ev_type, ISC_TIMEREVENT_IDLE);
687 isc_event_free(&event);
746 t5_start_event(isc_task_t *task, isc_event_t *event) {
770 isc_event_free(&event);
774 t5_tick_event(isc_task_t *task, isc_event_t *event) {
801 isc_event_free(&event);
805 t5_once_event(isc_task_t *task, isc_event_t *event) {
837 isc_event_free(&event);
842 t5_shutdown_event(isc_task_t *task, isc_event_t *event) {
847 UNUSED(event);
876 isc_event_free(&event);
888 isc_event_t *event;
1001 event = isc_event_allocate(mctx, (void *)1 , (isc_eventtype_t)1,
1002 t5_start_event, NULL, sizeof(*event));
1003 isc_task_send(T5_task1, &event);
1109 "events from 'timer' from the task's event queue.";