Lines Matching defs:writable
1455 bool writable = false;
1521 /* Test if the stream is writable */
1523 writable = true;
1529 /* If the stream is writable, send some data if necessary */
1530 if (writable) {
1546 writable = false;
1549 /* writable controls whether we set POLLOUT when polling - we set it to
1551 * be woken up immediately when the socket becomes writable. If there
1555 * set in revents even if the socket has meanwhile become writable, which
1560 writable = false;
1621 /* If the stream is writable, send some data if necessary */
1622 if (writable) {
1638 writable = false;
1644 * is not writable or there was no write pending. Set up a timer that
1650 if (writable) {
1682 pollfd->events = (short) (((have_sink && !writable) ? POLLOUT : 0) | (have_source ? POLLIN : 0));