200: if (p->rcv_xoff) { /* Event occurs */
201: if (p->flg) tk_set_flg(p->flg, FLG_OU_EVT);
202: p->rcv_xoff = 0;
221: /* Generate the event when the input-buffer is not empty */
222: if (ptr == p->in_rptr) tk_set_flg(p->flg, FLG_IN_EVT);
223:
249: if (ptr == INPTRMASK(p, p->in_wptr + 1)) {
250: tk_set_flg(p->flg, FLG_IN_EVT);
251: }
276: /* Generate the event when the output buffer is not empty */
277: if (ptr == p->ou_rptr) tk_set_flg(p->flg, FLG_OU_EVT);
278:
303: if (ptr == OUPTRMASK(p, p->ou_wptr + 1)) {
304: tk_set_flg(p->flg, FLG_OU_EVT);
305: }