Lines Matching defs:room
193 int room, ret;
204 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
205 if (room < 0)
206 room = 0;
207 /* Don't allow caller to write any more than we have room for */
208 if (count > room)
209 count = room;
233 int room;
242 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
243 if (room < 0)
244 room = 0;
246 return room;