Lines Matching defs:cond
116 GIOCondition cond;
118 cond = g_source_query_unix_fd(src, sub->tag);
119 eventfd.revents = (short)cond;
123 if (cond & G_IO_IN)
125 if (cond & G_IO_OUT)
127 if (cond & G_IO_ERR)
129 if (cond & G_IO_HUP)
350 GIOCondition cond = wsipr->w_read.actual_events | G_IO_ERR;
366 cond &= (unsigned int)~(G_IO_IN | G_IO_HUP);
368 cond |= G_IO_IN | G_IO_HUP;
373 cond &= (unsigned int)~G_IO_OUT;
375 cond |= G_IO_OUT;
378 wsipr->w_read.actual_events = (uint8_t)cond;
381 flags, (int)cond);
384 cond);