Home | History | Annotate | Download | only in gdbserver

Lines Matching defs:event

26    'write' field) each event in the queue into the buffer and send the
33 of 'struct notif_event' or its sub-class EVENT is created for FOO.
35 2. Enque EVENT to the 'queue' field of 'struct notif_server' for
36 FOO and send corresponding notification packet to GDB if EVENT is
40 3. EVENT is not deque'ed until the ack of FOO from GDB arrives.
42 EVENT is created and enque EVENT silently.
57 /* Write another event or an OK, if there are no more left, to
65 struct notif_event *event = notif->queue.front ();
67 notif->write (event, own_buf);
97 /* If we're waiting for GDB to acknowledge a pending event,
115 /* Put EVENT to the queue of NOTIF. */
119 struct notif_event *event)
121 notif->queue.push_back (event);
128 /* Push one event NEW_EVENT of notification NP into NP->queue. */